{% 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 %} {% block app_content %}
{% if search == '' %}

{{ _('All known domains') }}

{% else %}

{{ _('Domains containing %(search)s', search=search) }}

{% endif %}
{% for domain in domains %} {% endfor %}
{{ _('Domain') }}
{{ domain.name }}
{% endblock %}