aboutsummaryrefslogtreecommitdiff
path: root/app/templates/macros
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2020-01-24 18:03:40 +0000
committerrubenwardy <rw@rubenwardy.com>2020-01-24 18:03:40 +0000
commit53a63367dc7defc34616fc784cd19086d60ad54f (patch)
tree4726fe4258809a4d001438dc32c11d2de4809b8b /app/templates/macros
parentddf5c7f665f592f7233afb6e9ee8a1ef9db7aea1 (diff)
downloadcheatdb-53a63367dc7defc34616fc784cd19086d60ad54f.tar.xz
Fix wtforms validatoion of package name
Diffstat (limited to 'app/templates/macros')
-rw-r--r--app/templates/macros/topics.html1
1 files changed, 1 insertions, 0 deletions
diff --git a/app/templates/macros/topics.html b/app/templates/macros/topics.html
index 987f810..c4fe32d 100644
--- a/app/templates/macros/topics.html
+++ b/app/templates/macros/topics.html
@@ -54,6 +54,7 @@
<li{% if topic.wip %} class="wiptopic"{% endif %}>
<a href="https://forum.minetest.net/viewtopic.php?t={{ topic.topic_id}}">{{ topic.title }}</a>
{% if topic.wip %}[WIP]{% endif %}
+ {% if topic.discarded %}[Old]{% endif %}
{% if topic.name %}[{{ topic.name }}]{% endif %}
{% if show_author %}
by <a href="{{ url_for('users.profile', username=topic.author.username) }}">{{ topic.author.display_name }}</a>