aboutsummaryrefslogtreecommitdiff
path: root/src/django_pgpmailman/templates/django_pgpmailman/chunks/navbar.html
blob: 171d1d88762a6910ec8736d4be8e174ddf2989f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% load i18n %}
<li>
    {% if mlist %}
        <a href="{% url 'pgp_list_summary' list_id=mlist.list_id %}">
            <span class="fa fa-cog"></span>
            {% trans 'Manage PGP' %}
        </a>
    {% else %}
        <a href="{% url 'pgp_list_index' %}">
            <span class="fa fa-cog"></span>
            {% trans 'Manage PGP lists' %}
        </a>
    {% endif %}
</li>