{% extends "authentic2/manager/base.html" %}
{% load i18n static django_tables2 %}
{% block page-title %}{{ block.super }} - {% trans "Users" %}{% endblock %}
{% block appbar %}
{{ block.super }}
{% endblock %}
{% block breadcrumb %}
{{ block.super }}
{% trans 'Users' %}
{% if multiple_ou and object.ou %}
{{ object.ou }}
{% endif %}
{{ object }}
{% trans "Consent Management" context "manager" %}
{% endblock %}
{% block sidebar %}
{% endblock %}
{% block main %}
{% with row_link=0 %}
{% render_table table "authentic2/manager/user_authorizations_table.html" %}
{% endwith %}
{% endblock %}