{% extends "sentry/bases/admin.html" %} {% block admin-nav-queue %} class="active"{% endblock %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_helpers %} {% block title %}{% trans "Mail Configuration" %} | {{ block.super }}{% endblock %} {% block inner %}
{% trans "Host" %} {{ EMAIL_HOST }}:{{ EMAIL_PORT }}
{% trans "Username" %} {% if EMAIL_HOST_USER %}{{ EMAIL_HOST_USER }}{% else %}{% trans "not set" %}{% endif %}
{% trans "Password" %} {% if EMAIL_HOST_PASSWORD %}********{% else %}{% trans "not set" %}{% endif %}
{% trans "TLS?" %} {% if EMAIL_USE_TLS %}{% trans "Yes" %}{% else %}{% trans "No" %}{% endif %}
{% 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 %}