authentic/src/authentic2/manager/templates/authentic2/manager/ous.html

31 lines
832 B
HTML

{% extends "authentic2/manager/ou_common.html" %}
{% load i18n staticfiles django_tables2 %}
{% block page-title %}{{ block.super }} - {% trans "Organizational units" %}{% endblock %}
{% block breadcrumb %}
{{ block.super }}
{% endblock %}
{% block appbar %}
{{ block.super }}
<span class="actions">
{% if view.can_add %}
<a href="{% url "a2-manager-ou-add" %}" rel="popup">{% trans "Add organizational unit" %}</a>
{% endif %}
</span>
{% endblock %}
{% block sidebar %}
<aside id="sidebar">
{% include "authentic2/manager/search_form.html" %}
</aside>
{% endblock %}
{% block main %}
{% with row_link=1 %}
{% render_table table "authentic2/manager/table.html" %}
{% endwith %}
{% include "authentic2/manager/export_include.html" with export_view_name="a2-manager-ou-export" %}
{% endblock %}