diff options
author | rubenwardy <rw@rubenwardy.com> | 2018-06-02 19:41:13 +0100 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2018-06-02 19:41:13 +0100 |
commit | 3657316fa23e85b82b4259b2f993e020309c7f24 (patch) | |
tree | feba56051cff65335e93ef96067fd9209674031d /app/views/packages/todo.py | |
parent | a6f4249afb7018c43e69a7e7c7e69e53bf04aa8d (diff) | |
download | cheatdb-3657316fa23e85b82b4259b2f993e020309c7f24.tar.xz |
Clean up todo topics related HTML
Diffstat (limited to 'app/views/packages/todo.py')
-rw-r--r-- | app/views/packages/todo.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/views/packages/todo.py b/app/views/packages/todo.py index 9553ef2..d4526ee 100644 --- a/app/views/packages/todo.py +++ b/app/views/packages/todo.py @@ -58,6 +58,7 @@ def todo_topics_page(): topics = KrockForumTopic.query \ .filter(~ db.exists().where(Package.forums==KrockForumTopic.topic_id)) \ + .order_by(db.asc(KrockForumTopic.title)) \ .all() return render_template("todo/topics.html", topics=topics, total=total) |