All Categories
{% if categoryAccess.canAdd() %}Add category
{% endif %}
{% for category in categories %}
{% if user is null and category['topics_count'] is 0 %}
{% continue %}
{% endif %}
{{ category['name'] }}
{% if category['topics_count'] > topicsPerCategory %} See all {{ category['topics_count']}} topics {% endif %}No topics yet
{% endif %}
{% for topic in category['last_topics'] %}
{% endfor %}
{% endfor %}
{{ topic['name'] }}
{{ topic['comments_count'] == 0 ? 'no comments yet' : topic['comments_count'] }}