{% for topic in topics %}
{{ topic.name }}
{% if topic.description %}

{{ topic.description }}

{% endif %}
editar
{% if topic.subtopics %}
{% for s in topic.subtopics %} {{ s.name }} {% endfor %}
{% endif %}
{% endfor %} {% if not topics %}

Nenhum tópico criado ainda.

{% endif %}