{% extends 'default.html' %} {% set active_page = "dashboard" %} {% block head %} {% endblock %} {% block title %} Alias {% endblock %} {% block default_content %}
{% if query or sort or filter %} Reset {% endif %}
{% for alias_info in alias_infos %} {% set alias = alias_info.alias %}
{{ alias.email }}
{% if alias_info.latest_email_log != None %} {% set email_log = alias_info.latest_email_log %} {% set contact = alias_info.latest_contact %} {% if email_log.is_reply %} {{ contact.website_email }} {{ email_log.created_at | dt }} {% elif email_log.bounced %} {{ contact.website_email }} {{ email_log.created_at | dt }} {% elif email_log.blocked %} {{ contact.website_email }} {{ email_log.created_at | dt }} {% else %} {{ contact.website_email }} {{ email_log.created_at | dt }} {% endif %} {% else %} No Activity. Alias created {{ alias.created_at | dt }} {% endif %}
{{ alias_info.nb_forward }} forwards, {{ alias_info.nb_blocked }} blocks, {{ alias_info.nb_reply }} replies See All  â†’
{% if alias_info.latest_email_log != None %}
Alias created {{ alias.created_at | dt }}
{% endif %} {% if mailboxes|length > 1 %}
Current mailbox
{% elif alias_info.mailbox != None and alias_info.mailbox.email != current_user.email %}
Owned by {{ alias_info.mailbox.email }} mailbox
{% endif %}
Alias Note
Alias name
Delete   
{% endfor %}
{% if client_users %}
{% for client_user in client_users %} {% endfor %}
App Info First used
{{ client_user.client.name }} {% for scope, val in client_user.get_user_info().items() %}
{% if scope == "email" %} Email: {{ val }} {% elif scope == "name" %} Name: {{ val }} {% endif %}
{% endfor %}
{{ client_user.created_at | dt }}
{% endif %} {% endblock %} {% block script %} {% endblock %}