diff --git a/frontends/etiquette_flask/templates/tags.html b/frontends/etiquette_flask/templates/tags.html index 75bfc22..4581a0a 100644 --- a/frontends/etiquette_flask/templates/tags.html +++ b/frontends/etiquette_flask/templates/tags.html @@ -143,7 +143,7 @@ h2, h3 {% set parents = specific_tag.get_parents() %} {% if parents %}
-

Parents

+

{{parents|length}} Parents

{% endif %} - {% set tag_list_header = "

Children

" %} {% else %} - {% set tag_list_header = "

Tags

" %} {% endif %} {% if tags or not specific_tag %}
- {{ tag_list_header | safe }} + {% if specific_tag %} +

{{tags|length}} Descendants

+ {% else %} +

{{tags|length}} Tags

+ {% endif %}