fliu 62c501e9c7
email: Add UI for creating the home directory
email_server:
- `-i` option passes all remaining arguments to action
- delete unused "touch file" option

Views:
- delete broken links
- add tabs to every page
- separate admin tabs from user tabs
2021-08-17 19:43:30 -07:00

20 lines
439 B
HTML

{# SPDX-License-Identifier: AGPL-3.0-or-later #}
{% extends "base.html" %}
{% load i18n %}
{% block content %}
{{ tabs|safe }}
{{ block.super }}
{% if error %}
<div class="alert alert-danger" role="alert">
<p>
{% trans "There was a problem with your request. Please try again." %}
</p>
{% for message in error %}
<p>{{ message }}</p>
{% endfor %}
</div>
{% endif %}
{% endblock %}