{% load spirit_tags i18n %} {% if user.is_authenticated %} {% populate_bookmarks topics=page user=user %} {% endif %} {# topic list #}
{% for t in page %}
{% if t.is_pinned %} {% endif %} {% if t.is_closed %} {% endif %} {% if t.bookmark %} {{ t.title }} {% else %} {{ t.title }} {% endif %}
{% if show_subcategory %} {{ t.category.title }} {% else %} {% if t.category.parent %} {{ t.category.parent.title }} {% else %} {{ t.category.title }} {% endif %} {% endif %}
{{ t.comment_count }}
{{ t.last_active|shortnaturaltime }}
{% empty %}

{% trans "There are no topics here, yet" %}

{% endfor %}