This commit is contained in:
Aevann1 2021-09-17 13:14:45 +02:00
parent 9b68b619d3
commit 3acec6c7fc
8 changed files with 1084 additions and 212 deletions

View file

@ -81,7 +81,7 @@ def shop(v):
elif v.patron == 4: val["price"] = int(val["price"]*0.75)
else: val["price"] = int(val["price"]*0.70)
return render_template("shop.html", owned=owned, awards=list(AWARDS.values()), v=v)
return render_template("settings_shop.html", owned=owned, awards=list(AWARDS.values()), v=v)
@app.post("/buy/<award>")
@auth_required