mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-07 18:36:26 +00:00
114 lines
4.5 KiB
HTML
114 lines
4.5 KiB
HTML
{% extends "users/sidebar.html" %}
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}Profil{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Adhérent</h2>
|
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'users:edit-info' user.id %}"><i class="glyphicon glyphicon-fire"></i> Editer</a>
|
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'users:password' user.id %}"><i class="glyphicon glyphicon-lock"></i> Changer le mot de passe</a>
|
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'users:state' user.id %}"><i class="glyphicon glyphicon-flash"></i> Changer le statut</a>
|
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'users:add-right' user.id %}"><i class="glyphicon glyphicon-ok"></i> Ajouter un droit</a>
|
|
<br />
|
|
<br />
|
|
<table class="table table-striped">
|
|
<tr>
|
|
<th>Prénom</th>
|
|
<td>{{ user.name }}</td>
|
|
<th>Nom</th>
|
|
<td>{{ user.surname }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Pseudo</th>
|
|
<td>{{ user.pseudo }}</td>
|
|
<th>E-mail</th>
|
|
<td>{{ user.email }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Ecole</th>
|
|
<td>{{ user.school }}</td>
|
|
<th>Commentaire</th>
|
|
<td>{{ user.comment }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Chambre</th>
|
|
<td>{{ user.room }}</td>
|
|
<th>Date d'inscription</th>
|
|
<td>{{ user.registered }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Fin d'adhésion</th>
|
|
{% if end_adhesion != None %}
|
|
<td><font color="green">{{ end_adhesion }}</font></td>
|
|
{% else %}
|
|
<td><font color="red">Non adhérent</font></td>
|
|
{% endif %}
|
|
<th>Accès gracieux</th>
|
|
{% if end_whitelist != None %}
|
|
<td><font color="green">{{ end_whitelist }}</font></td>
|
|
{% else %}
|
|
<td><font color="orange">Aucun</font></td>
|
|
{% endif %}
|
|
<tr>
|
|
<th>Bannissement</th>
|
|
{% if end_ban != None %}
|
|
<td><font color="red">{{ end_ban }}</font></td>
|
|
{% else %}
|
|
<td><font color="green">Non banni</font></td>
|
|
{% endif %}
|
|
<th>Statut</th>
|
|
{% if user.state == 0 %}
|
|
<td><font color="green">Actif</font></td>
|
|
{% elif user.state == 1 %}
|
|
<td><font color="red">Désactivé</font></td>
|
|
{% else %}
|
|
<td><font color="orange">Archivé</font></td>
|
|
{% endif %}
|
|
</tr>
|
|
<tr>
|
|
<th>Connexion</th>
|
|
{% if actif == True %}
|
|
<td><font color="green">Active</font></td>
|
|
{% else %}
|
|
<td><font color="red">Désactivée</font></td>
|
|
{% endif %}
|
|
<th>Droits</th>
|
|
{% if list_droits %}
|
|
<td>{% for droit in list_droits %}{{ droit.right }} - {% endfor %}</td>
|
|
{% else %}
|
|
<td>Aucun</td>
|
|
{% endif %}
|
|
</table>
|
|
<h2>Machines :</h2>
|
|
<h4><a class="btn btn-primary btn-sm" role="button" href="{% url 'machines:new-machine' user.id %}"><i class="glyphicon glyphicon-phone"></i> Ajouter une machine</a></h4>
|
|
{% if machine_list %}
|
|
{% include "machines/aff_machines.html" with machine_list=machine_list %}
|
|
{% else %}
|
|
<p>Aucune machine</p>
|
|
{% endif %}
|
|
<h2>Cotisations :</h2>
|
|
<h4><a class="btn btn-primary btn-sm" role="button" href="{% url 'cotisations:new-facture' user.id %}"><i class="glyphicon glyphicon-piggy-bank"></i> Ajouter une cotisation</a></h4>
|
|
{% if facture_list %}
|
|
{% include "cotisations/aff_cotisations.html" with facture_list=facture_list %}
|
|
{% else %}
|
|
<p>Aucune facture</p>
|
|
{% endif %}
|
|
<h2>Bannissements :</h2>
|
|
<h4><a class="btn btn-primary btn-sm" role="button" href="{% url 'users:add-ban' user.id %}"><i class="glyphicon glyphicon-pushpin"></i> Ajouter un bannissement</a></h4>
|
|
{% if ban_list %}
|
|
{% include "users/aff_bans.html" with ban_list=ban_list %}
|
|
{% else %}
|
|
<p>Aucun bannissement</p>
|
|
{% endif %}
|
|
<h2>Accès à titre gracieux :</h2>
|
|
<h4><a class="btn btn-primary btn-sm" role="button" href="{% url 'users:add-whitelist' user.id %}"><i class="glyphicon glyphicon-pushpin"></i> Accorder un accès à titre gracieux</a></h4>
|
|
{% if white_list %}
|
|
{% include "users/aff_whitelists.html" with white_list=white_list %}
|
|
{% else %}
|
|
<p>Aucun accès gracieux</p>
|
|
{% endif %}
|
|
<br />
|
|
<br />
|
|
<br />
|
|
{% endblock %}
|
|
|