root / uauth / organization / templates / organization / users.html @ 836b9f76
1 |
{% extends "organization/base.html" %} |
---|---|
2 |
{% load i18n staticfiles django_tables2 %} |
3 |
|
4 |
{% block page-title %} |
5 |
{% trans 'Users management' %} |
6 |
{% endblock %} |
7 |
|
8 |
{% block appbar %} |
9 |
<h2>{% trans "Local users" %}</h2> |
10 |
{% endblock %} |
11 |
|
12 |
{% block content %} |
13 |
{% render_table table "organization/users_table.html" %} |
14 |
{% endblock %} |
15 |
|