{% extends 'default.html' %} {% set active_page = "dashboard" %} {% block title %} Dashboard {% endblock %} {% block default_content %}
{% for gen_email in gen_emails %} {% endfor %}
Email Used On Actions Enable/Disable Email Forwarding Created At
{% for client_user in gen_email.client_users %} {{ client_user.client.name }}
{% endfor %}
{% if gen_email.enabled %} {% endif %}
{{ gen_email.created_at | dt }}
{% for client_user in client_users %} {# TODO: add last_used#} {% endfor %}
App Information 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 }}
{% endblock %} {% block script %} {% endblock %}