diff options
author | rubenwardy <rw@rubenwardy.com> | 2018-12-25 16:43:41 +0000 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2018-12-25 16:43:41 +0000 |
commit | c726f56b3edbc2b97b82b777bada83a2097acb80 (patch) | |
tree | 643547815e69b467c3abbd1b2041d042766ff0ad /app/views/packages/todo.py | |
parent | daded6d193433cb6f76d93a4ed3833131d70f597 (diff) | |
download | cheatdb-c726f56b3edbc2b97b82b777bada83a2097acb80.tar.xz |
Fix bugs in topic todo
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 2742f6d..803ae44 100644 --- a/app/views/packages/todo.py +++ b/app/views/packages/todo.py @@ -43,6 +43,7 @@ def todo_page(): topics_to_add = ForumTopic.query \ .filter(~ db.exists().where(Package.forums==ForumTopic.topic_id)) \ + .filter_by(discarded=False) \ .count() return render_template("todo/list.html", title="Reports and Work Queue", |