{% extends "kfet/base.html" %} {% block title %} {% if account.user == request.user %} Mes informations {% else %} Informations du compte {{ account.trigramme }} {% endif %} {% endblock %} {% block content %}
Prénom: {{ account.first_name }}
Nom: {{ account.last_name }}
{% if perms.kfet.is_team %}Surnom: {{ account.nickname }}
{% endif %}Email: {{ account.email }}
Département: {{ account.departement }}
Promo: {{ account.promo }}
Statut COF: {{ account.is_cof }}
Compte gelé: {{ account.is_frozen }}
Solde: {{ account.balance }} €
{% if account.balance != account.real_balance %}Solde réel: {{ account.real_balance }} €
{% endif %} {% if account.negative.authorized_overdraft %}Découvert autorisé: {{ account.negative.authorized_overdraft }} €
{% endif %} {% if account.negative.start %}En négatif depuis {{ account.negative.start }}
{% endif %} {% endblock %}