1
Fork 0
mirror of https://github.com/Steffo99/estus.git synced 2024-11-21 15:14:19 +00:00

Increase the warranty expiration time to 30 days

This commit is contained in:
Steffo 2017-09-22 08:48:17 +02:00
parent 5810c5a866
commit 60d1f33c99

View file

@ -850,7 +850,7 @@ def page_order_list():
return abort(403)
ordini = Ordine.query.order_by(Ordine.data.desc()).all()
return render_template("ordine/list.htm", orders=ordini, pagetype="order",
today=datetime.date.today(), soon=datetime.date.today() + datetime.timedelta(7))
today=datetime.date.today(), soon=datetime.date.today() + datetime.timedelta(30))
@app.route('/order_add', methods=['GET', 'POST'])