{% extends "sentry/bases/admin.html" %} {% block admin-nav-mail %} class="active"{% endblock %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_helpers %} {% block title %}{% trans "Mail Configuration" %} | {{ block.super }}{% endblock %} {% block main %}

{% trans "SMTP Settings" %}

{% trans "From Address" %}
{{ mail_from }}
{% trans "Host" %}
{{ mail_host }}:{{ mail_port }}
{% trans "Username" %}
{% if mail_username %}{{ mail_username }}{% else %}{% trans "not set" %}{% endif %}
{% trans "Password" %}
{% if mail_password %}********{% else %}{% trans "not set" %}{% endif %}
{% trans "TLS?" %}
{% if mail_use_tls %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %}
{% trans "Mailing List Namespace" %}
{{ mail_list_namespace }}

{% trans "Test Settings" %}

{% csrf_token %}

{% trans "Send an email to your account's email address to confirm that everything is configured correctly." %}

{{ form|as_crispy_errors }} {% for field in form %} {{ field|as_crispy_field }} {% endfor %}
{% endblock %}