{% extends 'base/base.html' %} {% block content %} {% from 'forums/_macro.html' import forums_title,forums_item %} {% from 'topic/_list_macro.html' import form as topic_form %} {% from 'topic/_list_macro.html' import body as topic_body %} {% from 'topic/_list_macro.html' import no_topics %} {{ breadcrumb() }} {{ forums_title() }}
{{ topic_form() }} {% for topic in topics.items %} {{ topic_body(topic) }} {% else %} {{ no_topics() }} {% endfor %}
{{ panel_base.index() }}
{% endblock %}