{% extends "base.html" %} {% block title %} Mail management {% endblock title %} {% block head %} {{ super() }} {% endblock head %} {% macro delete_modal(modal_id, confirm_text, action, payload) %} {% endmacro delete_modal %} {% macro add_modal(modal_id, add_button, add_text, action, payload, button_classes, input_name, prefill=false) %} {% endmacro add_modal %} {% block content %}

Mail management

{% if user_error %}
{{ user_error }}
{% endif %}

Account {% if name %} ({{ name }}) {% else %} (no name, disabled) {% endif %}

Mails

{{ self::add_modal(modal_id="addMail", add_button="Add new mail", button_classes="mt-2", add_text="Add new mail", action="/mail/add", input_name="mail", payload=[], prefill=true) }}

Aliases

{{ self::add_modal(modal_id="addAlias", add_button="Add new alias", button_classes="mt-2", add_text="Add new alias", action="/alias/add", input_name="mail", payload=[], prefill=true) }}
{% endblock content %}