appstore: basic filter implementation

This commit is contained in:
Alexandre Aubin
2023-08-26 11:29:02 +02:00
parent 476796b184
commit 21e968f0ba
2 changed files with 41 additions and 3 deletions

View File

@ -119,7 +119,7 @@ def index():
@app.route('/catalog')
def browse_catalog(category_filter=None):
return render_template("catalog.html", user=session.get('user', {}), catalog=catalog)
return render_template("catalog.html", user=session.get('user', {}), catalog=catalog, timestamp_now=int(time.time()))
@app.route('/app/<app_id>')