{% extends "sentry/admin/base.html" %} {% block admin-nav-queue %} class="active"{% endblock %} {% load url from future %} {% load crispy_forms_tags %} {% load i18n %} {% load sentry_helpers %} {% block title %}{% trans "Mail Configuration" %} | {{ block.super }}{% endblock %} {% block breadcrumb %}
  • {% trans "Mail Configuration" %}
  • {% 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 %} {% include "sentry/partial/_form_field.html" %} {% endfor %}
    {% endblock %}