This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/passbook/admin/templates/administration/base.html

21 lines
448 B
HTML
Raw Normal View History

2018-11-11 12:41:48 +00:00
{% extends "overview/base.html" %}
{% load i18n %}
{% load is_active %}
{% block nav_secondary %}
<ul class="nav navbar-nav navbar-persistent">
<li class="active">
<a href="#">{% trans 'Overview' %}</a>
</li>
<li class="{% is_active 'applications'}">
<a href="#">{% trans 'Applications' %}</a>
</li>
<li>
<a href="#">{% trans 'Rules' %}</a>
</li>
<li>
<a href="#">{% trans 'Users' %}</a>
</li>
</ul>
{% endblock %}