Sunil Mohan Adapa 3ee76e38a5
email_server: Add heading for manage aliases page
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org>
[fioddor: Keep email_alias.html based on email_form_base.html to avoid
inconsistent UI]
Reviewed-by: Fioddor Superconcentrado <fioddor@gmail.com>
2021-10-18 12:44:19 +02:00

44 lines
1.2 KiB
HTML

{# SPDX-License-Identifier: AGPL-3.0-or-later #}
{% extends "email_form_base.html" %}
{% load bootstrap %}
{% load i18n %}
{% block content %}
{{ block.super }}
<h1>{% trans 'Manage Aliases' %}</h1>
{% if no_alias %}
<p>{% trans "You have no email aliases." %}</p>
{% else %}
<form action="{{ request.path }}" method="post">
{% csrf_token %}
{{ alias_boxes|safe }}
<input type="hidden" name="form" value="Checkboxes">
<input class="btn btn-secondary" type="submit" name="btn_disable"
value="{% trans 'Disable selected' %}">
<input class="btn btn-secondary" type="submit" name="btn_enable"
value="{% trans 'Enable selected' %}">
<input class="btn btn-danger" type="submit" name="btn_delete"
value="{% trans 'Delete selected' %}">
</form>
{% endif %}
<h4>{% trans "Create a new email alias" %}</h4>
<form action="{{ request.path }}" method="post">
{% csrf_token %}
{{ form|bootstrap }}
<input type="hidden" name="form" value="AliasCreationForm">
<input class="btn btn-primary" type="submit" name="btn_add"
value="{% trans 'Add' %}">
</form>
{% endblock %}