3
0
Fork 0
mirror of https://github.com/nanoy42/coope synced 2024-05-09 02:32:24 +00:00
coope/users/templates/users/group_profile.html
2019-01-17 23:16:43 +01:00

85 lines
2.1 KiB
HTML

{% extends "base.html" %}
{% block entete %}Gestion des utilisateurs{% endblock %}
{% block navbar %}
<ul>
<li><a href="#first">Général</a></li>
<li><a href="#second">Droits</a></li>
<li><a href="#third">Utilisateurs</a></li>
</ul>
{% endblock %}
{% block content %}
<section id="first" class="main">
<header class="major">
<h2>Général</h2>
</header>
<div class="row">
<div class="12u">
Nom : {{ group.name }}
</div>
</div>
<br>
<div class="row">
{% if perms.auth.change_group %}
<div class="6u">
<a class="button" href="{% url 'users:editGroup' group.pk %}"><i class="fa fa-pencil-alt"></i> Éditer</a>
</div>
{% endif %}
{% if perms.auth.delete_group %}
<div class="6u">
<a class="button" href="{% url 'users:deleteGroup' group.pk %}"><i class="fa fa-trash"></i> Supprimer</a>
</div>
{% endif %}
</div>
</section>
<section id="second" class="main">
<header class="major">
<h2>Droits</h2>
</header>
<div class="table-wrapper">
<table>
<thead>
<tr>
<th>Nom</th>
<th>Description</th>
<th>Administrer</th>
</tr>
</thead>
<tbody>
{% for perm in group.permissions.all %}
<tr>
<td>{{perm.codename}}</td>
<td>{{perm.name}}</td>
<td><a class="button small" href="{% url 'users:removeRight' group.pk perm.pk %}"><i class="fa fa-minus-square"></i> Enlever le droit</a></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</section>
<section id="third" class="main">
<header class="major">
<h2>Utilisateurs</h2>
</header>
<div class="table-wrapper">
<table>
<thead>
<tr>
<th>Nom d'utilisateur</th>
<th>Profil</th>
<th>Administrer</th>
</tr>
</thead>
<tbody>
{% for user in group.user_set.all %}
<tr>
<td><a href="{% url 'users:profile' user.pk %}">{{user}}</a></td>
<td><a class="button small" href="{% url 'users:profile' user.pk %}"><i class="fa fa-user"></i> Profil</a></td>
<td><a class="button small" href="{% url 'users:removeUser' group.pk user.pk %}"><i class="fa fa-minus-square"></i> Retirer</a></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</section>
{% endblock %}