131 lines
4.5 KiB
HTML
131 lines
4.5 KiB
HTML
{% extends "users/sidebar.html" %}
|
|
{% comment %}
|
|
Re2o est un logiciel d'administration développé initiallement au rezometz. Il
|
|
se veut agnostique au réseau considéré, de manière à être installable en
|
|
quelques clics.
|
|
|
|
Copyright © 2017 Gabriel Détraz
|
|
Copyright © 2017 Goulven Kermarec
|
|
Copyright © 2017 Augustin Lemesle
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License along
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
{% endcomment %}
|
|
|
|
{% load bootstrap3 %}
|
|
|
|
{% block title %}Profil{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Compte</h2>
|
|
<div>
|
|
<a class="btn btn-primary btn-sm" role="button" href="{% url 'users:edit-info' user.id %}">
|
|
<i class="glyphicon glyphicon-edit"></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>
|
|
{% if is_bureau %}
|
|
<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>
|
|
{% endif %}
|
|
<a class="btn btn-info btn-sm" role="button" href="{% url 'users:history' 'user' user.id %}">
|
|
<i class="glyphicon glyphicon-time"></i>
|
|
Historique
|
|
</a>
|
|
</div>
|
|
<p>
|
|
<br />
|
|
</p>
|
|
<table class="table table-striped">
|
|
<tr>
|
|
<th>Prénom</th>
|
|
<td>{{ user.name }}</td>
|
|
<th>Nom</th>
|
|
<td>{{ user.last_name }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Pseudo</th>
|
|
<td>{{ user.username }}</td>
|
|
<th>E-mail</th>
|
|
<td>{{ user.email }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Commentaire</th>
|
|
<td>{{ user.comment }}</td>
|
|
<th>Date d'inscription</th>
|
|
<td>{{ user.date_joined }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Adresse</th>
|
|
<td>{{ user.adresse }}</td>
|
|
<th>Telephone</th>
|
|
<td>{{ user.telephone }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Emprunts maximums autorisés</th>
|
|
<td>{{ user.maxemprunt }}</td>
|
|
<th>Droits</th>
|
|
{% if list_droits %}
|
|
<td>{% for droit in list_droits %}{{ droit.right }}{% if list_droits|length != forloop.counter %} - {% endif %} {% endfor %}</td>
|
|
{% else %}
|
|
<td>Aucun</td>
|
|
{% endif %}
|
|
</tr>
|
|
<tr>
|
|
<th>Statut</th>
|
|
{% if user.is_active %}
|
|
<td><font color="green">Actif</font></td>
|
|
{% else %}
|
|
<td><font color="red">Désactivé</font></td>
|
|
{% endif %}
|
|
<th>Dernière connexion</th>
|
|
<td>{{ user.last_login }}</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Adherent pour l'année en cours</th>
|
|
{% if user.is_adherent %}
|
|
<td><font color="green">Oui</font></td>
|
|
{% else %}
|
|
<td><font color="red">Non</font></td>
|
|
{% endif %}
|
|
{% if not user.is_adherent and is_bureau %}
|
|
<th></th>
|
|
<td><a class="btn btn-primary btn-sm" role="button" href="{% url 'users:adherer' user.id %}"><i class="glyphicon glyphicon-flag"></i> Adhérer</a></td>
|
|
{% endif %}
|
|
</tr>
|
|
</table>
|
|
<h2>Emprunts</h2>
|
|
{% if is_perm or is_bureau %}
|
|
<h4><a class="btn btn-primary btn-sm" role="button" href="{% url 'media:add-emprunt' user.id %}"><i class="glyphicon glyphicon-flag"></i> Ajouter</a></h4>
|
|
{% endif %}
|
|
{% if emprunts_list %}
|
|
{% include "media/aff_emprunts.html" with emprunts_list=emprunts_list %}
|
|
{% else %}
|
|
<p>Aucun emprunt</p>
|
|
{% endif %}
|
|
<br />
|
|
<br />
|
|
<br />
|
|
{% endblock %}
|
|
|