{% extends "users/base.html" %} {% block title %}List Default Email{% endblock title %} {% block content %}

List Default Email

{% csrf_token %}
{% for email in emails %} {% empty %} {% endfor %}
Email destination Actions
{{ email.source }} {% if email.destination == 'pipe@example.com' %} {{ email.path }} {% else %} {{ email.destination }} {% endif %}
{% csrf_token %}
No results found.
{% endblock content %} {% include "users/footer.html" %}