aboutsummaryrefslogtreecommitdiff
path: root/src/django_pgpmailman/templates/django_pgpmailman/chunks/navbar.html
blob: eb114bc1a1801009def6ea8bc1b409516fa54170 (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="glyphicon glyphicon-lock"></span>
            {% trans 'Manage PGP' %}
        </a>
    {% else %}
        <a href="{% url 'pgp_list_index' %}">
            <span class="glyphicon glyphicon-lock"></span>
            {% trans 'Manage PGP lists' %}
        </a>
    {% endif %}
</li>