{% extends "base_resource.html" %} {% load i18n %} {% block entity_content %}
{% trans "All Email addresses. A mailbox address delivers email to a Login that you can check with a username and password. An alias address sends email to another email address." %}
{% trans 'New Email Mailbox' %} {% trans 'New Email Alias' %} {% if entity_list %}{% trans 'Email' %} | {% trans 'Delivers to' %} | {% trans 'Type' %} | {% trans "Status" %} | {% trans 'Actions' %} |
---|---|---|---|---|
{{ entity.local }}@{{ entity.domain_name }} | {{ entity.get_display_destination }} | {{ entity.get_display_type }} | {{ entity.get_display_status }} | {% if entity.get_type == 'mailbox' %} {% trans 'Edit' %} {% trans 'Delete' %} {% if entity.display_as_disabled %} {% trans 'Enable' %} {% else %} {% trans 'Disable' %} {% endif %} {% else %} {% trans 'Edit' %} {% trans 'Delete' %} {% if entity.display_as_disabled %} {% trans 'Enable' %} {% else %} {% trans 'Disable' %} {% endif %} {% endif %} |