mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-03-11 09:04:54 +00:00
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
19 lines
331 B
HTML
19 lines
331 B
HTML
{# SPDX-License-Identifier: AGPL-3.0-or-later #}
|
|
{% extends "app.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
{{ tabs|safe }}
|
|
{{ block.super }}
|
|
{% endblock %}
|
|
|
|
{% block extra_content %}
|
|
<p>
|
|
<a href="/rspamd/">
|
|
{% trans "Visit Rspamd administration interface" %}
|
|
</a>
|
|
</p>
|
|
{{ block.super }}
|
|
{% endblock %}
|