{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %} {% extends 'themes/' + theme() + '/base.html' %} {% else %} {% extends "base.html" %} {% endif %} %} {% from 'bootstrap/form.html' import render_form %} {% set active_child = 'admin_topics' %} {% block app_content %}
{% if topic %}

{{ _('Edit %(topic_name)s', topic_name=topic.name) }}

{% endif %} {{ render_form(form) }}

{% include 'admin/_nav.html' %}

{% endblock %}