{% extends "base.html" %} {% comment %} SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load bootstrap3 %} {% block title %}Profil{% endblock %} {% block content %}
Prénom | {{ user.first_name }} | Nom | {{ user.last_name }} | |
---|---|---|---|---|
Pseudo | {{ user.username }} | {{ user.email }} | ||
Commentaire | {{ user.comment }} | Date d'inscription | {{ user.date_joined }} | |
Adresse | {{ user.address }} | Telephone | {{ user.telephone }} | |
Emprunts maximums autorisés | {{ user.maxemprunt }} | Droits | {% if list_droits %}{% for droit in list_droits %}{{ droit.right }}{% if list_droits|length != forloop.counter %} - {% endif %} {% endfor %} | {% else %}Aucun | {% endif %}
Statut | {% if user.is_active %}Actif | {% else %}Désactivé | {% endif %}Dernière connexion | {{ user.last_login }} |
Adherent pour l'année en cours | {% if user.is_adherent %}Oui | {% else %}Non | {% endif %} {% if not user.is_adherent and is_bureau %}Adhérer | {% endif %}
Aucun emprunt
{% endif %} {% endblock %}