{% extends "postorius/base.html" %} {% load i18n %} {% block head_title %} {% trans 'Domains' %} - {{ block.super }} {% endblock %} {% block content %}

{% trans 'Add Domain' %}

{% if domains %}
{% for domain in domains %} {% endfor %}
{% trans 'Mail Host' %} {% trans 'Description' %} {% trans 'Web Host' %}  
{{ domain.mail_host }} {% if domain.description %}{{ domain.description }}{% endif %} {{ domain.site.name }} ({{ domain.site.domain }}) {% trans 'Edit' %} {% trans 'Delete' %}
{% else %}

No domains yet.

{% endif %} {% endblock content %}