2016-07-03 16:09:58 +00:00
{% 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 >
2016-07-04 01:01:09 +00:00
< 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 >
2016-07-03 16:09:58 +00:00
< 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 >
< 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 > Promo< / th >
< td > {{ user.promo }}< / td >
< / tr >
< tr >
< th > Chambre< / th >
< td > {{ user.room }}< / td >
< th > Date d'inscription< / th >
2016-07-03 17:48:46 +00:00
< td > {{ user.registered }}< / td >
2016-07-03 16:09:58 +00:00
< / tr >
2016-07-03 17:48:46 +00:00
< 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 > Bannissement< / th >
{% if end_ban != None %}
< td > < font color = "red" > {{ end_ban }}< / font > < / td >
{% else %}
< td > < font color = "green" > Non banni< / 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 > 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 %}
2016-07-03 16:09:58 +00:00
< / table >
< h2 > Machines :< / h2 >
2016-07-04 01:01:09 +00:00
< 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 >
2016-07-03 16:09:58 +00:00
{% if machine_list %}
2016-07-04 01:01:09 +00:00
{% include "machines/aff_machines.html" with machine_list=machine_list %}
2016-07-03 16:09:58 +00:00
{% 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 >
2016-07-04 01:01:09 +00:00
< 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 >
2016-07-03 16:09:58 +00:00
{% if ban_list %}
{% include "users/aff_bans.html" with ban_list=ban_list %}
{% else %}
< p > Aucun bannissement< / p >
{% endif %}
< br / >
< br / >
< br / >
{% endblock %}