aboutsummaryrefslogtreecommitdiffhomepage
path: root/apioforum/templates
diff options
context:
space:
mode:
authorcitrons <citrons@mondecitronne.com>2025-06-16 23:22:06 -0500
committerubq323 <ubq323@ubq323.website>2025-06-17 12:05:31 +0100
commit27b59ebdfa189f3ccf6b2989951407e6b0fe1076 (patch)
tree7fc885994a5bace15e8b5735976bedaebae3624e /apioforum/templates
parentebf7fe7336de9567360bfa33e201165a4ddd1a0b (diff)
display a message when there are no threads
Diffstat (limited to 'apioforum/templates')
-rw-r--r--apioforum/templates/view_forum.html5
1 files changed, 5 insertions, 0 deletions
diff --git a/apioforum/templates/view_forum.html b/apioforum/templates/view_forum.html
index 8ab6f42..c315550 100644
--- a/apioforum/templates/view_forum.html
+++ b/apioforum/templates/view_forum.html
@@ -190,6 +190,11 @@ you do not have permission to create threads in this forum
{% endif %}
</div>
{%endfor%}
+ {% if not threads %}
+ <p class="listing-box listing-message">
+ no threads{% if tagfilter_tag %} with that tag{% endif %}
+ </p>
+ {% endif %}
</div>