Projet

Général

Profil

Télécharger (508 octets) Statistiques
| Branche: | Tag: | Révision:

root / uauth / organization / templates / organization / users.html @ 64438aee

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
<a href="{% url "import-users" organization.slug %}" rel="popup">{% trans "Import users" %}</a>
11
<a href="{% url "create-users" organization.slug %}" rel="popup">{% trans "Create users" %}</a>
12
{% endblock %}
13

    
14
{% block content %}
15
{% render_table table "organization/users_table.html" %}
16
{% endblock %}
17

    
(7-7/9)