{{ category['name'] }} {% if categoryAccess.canChange(category['id']) %} edit {% endif %}
{% if topicAccess.canAdd() %}Add topic
{% endif %}
{% for topic in topics %}
{% endfor %}
{% if pages > 1 %}
{{ topic['name'] }}
{{ topic['comments_count'] == 0 ? 'no comments yet' : topic['comments_count'] }}
{{ page }} of {{ pages }} pages
{% endif %}
{% if page > 2 %}
First page
{% endif %}
{% if page > 1 %}
Back
{% endif %}
{% if page < pages %}
Next
{% endif %}
{% if page < pages and (pages - page) > 1 %}
Last page
{% endif %}