This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
u-auth/uauth/organization/templates/organization/users.html

17 lines
412 B
HTML

{% extends "organization/base.html" %}
{% load i18n staticfiles django_tables2 %}
{% block page-title %}
{% trans 'Users management' %}
{% endblock %}
{% block appbar %}
<h2>{% trans "Local users" %}</h2>
<a href="{% url "create-users" organization.slug %}" rel="popup">{% trans "Create users" %}</a>
{% endblock %}
{% block content %}
{% render_table table "organization/users_table.html" %}
{% endblock %}