{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %} {% extends 'themes/' + theme() + '/base.html' %} {% else %} {% extends "base.html" %} {% endif %} {% set active_child = 'chats' %} {% from 'bootstrap/form.html' import render_form %} {% block app_content %}
{{ _('Report conversation with "%(member_names)s"', member_names=conversation.member_names(current_user.id)) }}
{{ render_form(form) }}
{% endblock %}