mirror of
https://github.com/freedombox/FreedomBox.git
synced 2026-02-04 08:13:38 +00:00
Signed-off-by: Sunil Mohan Adapa <sunil@medhas.org> Reviewed-by: James Valleroy <jvalleroy@mailbox.org>
18 lines
429 B
HTML
18 lines
429 B
HTML
{% extends "app.html" %}
|
|
{% comment %}
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
{% endcomment %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block subsubmenu %}
|
|
<a class="btn btn-default" role="button" href="/rspamd/">
|
|
{% trans "Manage Spam" %}
|
|
<span class="fa fa-external-link"></span>
|
|
</a>
|
|
<a class="btn btn-default" role="button"
|
|
href="{% url 'email_server:aliases' %}">
|
|
{% trans "Manage Aliases" %}
|
|
</a>
|
|
{% endblock %}
|