{% extends 'default.html' %} {% set active_page = "dashboard" %} {% block head %} {% endblock %} {% block title %} Alias {% endblock %} {% block default_content %}
{% for alias_info in aliases %} {% set gen_email = alias_info.gen_email %}
{{ gen_email.email }} {% if gen_email.enabled %} Copy {% endif %}

Created {{ gen_email.created_at | dt }} {% if alias_info.highlight %} - New {% endif %}

{{ alias_info.nb_forward }} forwards, {{ alias_info.nb_blocked }} blocks, {{ alias_info.nb_reply }} replies See All Activity  â†’
{% if gen_email.enabled %} Send Email    {% endif %}
Delete   
{% endfor %}
{% if client_users %}
{% for client_user in client_users %} {# TODO: add last_used#} {% 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 %}