aboutsummaryrefslogtreecommitdiff
path: root/app/views/packages.py
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/packages.py')
-rw-r--r--app/views/packages.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/packages.py b/app/views/packages.py
index 6f809f2..c9ad24f 100644
--- a/app/views/packages.py
+++ b/app/views/packages.py
@@ -29,7 +29,8 @@ def doPackageList(type):
if shouldReturnJson():
return jsonify([package.getAsDictionary(app.config["BASE_URL"]) for package in query.all()])
else:
- return render_template("packages/list.html", title=title, packages=query.all(), query=search)
+ tags = Tag.query.all()
+ return render_template("packages/list.html", title=title, packages=query.all(), query=search, tags=tags)
@app.route("/packages/")