11 lines
757 B
Text
11 lines
757 B
Text
{% extends "proprio" %}
|
|
{% block id %}
|
|
{{["aid=",o.aid.0]|join|coul('bleu')}} {{"Nom : "|coul('gras')}}{{o.prenom|join(' ')}} {{o.nom|join(' ')}}
|
|
{% endblock%}
|
|
{% block proprio %}
|
|
{{"Numéro de téléphone : "|coul('gras')}}{{o.tel|join(', ')}}
|
|
{{"Chambre : "|coul('gras')}}{{o.chbre.0}} ({{o.chbre.0|string|prise_etat}})
|
|
{{"Études : "|coul('gras')}}{{o.etudes|join(' ')}}
|
|
{{"Cotisation payée pour les années : "|coul('gras')}}{{o.paiement|join(' ')}} {% if o.get('controle', []) and 'p' in o.controle.0.value %}{{"(OK)"|coul('vert')}}{% endif %}
|
|
{{"Carte d'étudiant fournie pour les années : "|coul('gras')}}{{o.carteEtudiant|join(' ')}} {% if o.get('controle', []) and 'c' in o.controle.0.value %}{{"(OK)"|coul('vert')}}{% endif %}
|
|
{% endblock%}
|