{% extends "kfet/base.html" %} {% block title %} {% if account.user == request.user %} Mon compte {% else %} Informations du compte {{ account.trigramme }} {% endif %} {% endblock %} {% block content-header-title %} {% if account.user == request.user %} Mon compte {% else %} 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.negative.balance_offset %}

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 %}