diff --git a/Back-End/Subscriptions/templates/pdfs/fiche_eleve.html b/Back-End/Subscriptions/templates/pdfs/fiche_eleve.html
index e311472..72a5017 100644
--- a/Back-End/Subscriptions/templates/pdfs/fiche_eleve.html
+++ b/Back-End/Subscriptions/templates/pdfs/fiche_eleve.html
@@ -1,228 +1,319 @@
-
+
-
-
-
-
-
-
-
ÉLÈVE
-
-
- | Nom |
- {{ student.last_name }} |
- Prénom |
- {{ student.first_name }} |
-
-
- | Adresse |
- {{ student.address }} |
-
-
- | Genre |
- {{ student|getStudentGender }} |
- Né(e) le |
- {{ student.birth_date }} |
-
-
- | À |
- {{ student.birth_place }} ({{ student.birth_postal_code }}) |
- Nationalité |
- {{ student.nationality }} |
-
-
- | Niveau |
- {{ student|getStudentLevel }} |
- |
- |
-
-
-
+
+
+
-
-
-
RESPONSABLES
- {% for guardian in student.getGuardians %}
-
-
Responsable {{ forloop.counter }}
-
-
- | Nom |
- {{ guardian.last_name }} |
- Prénom |
- {{ guardian.first_name }} |
-
-
- | Adresse |
- {{ guardian.address }} |
-
-
- | Email |
- {{ guardian.email }} |
-
-
- | Né(e) le |
- {{ guardian.birth_date }} |
- Téléphone |
- {{ guardian.phone|phone_format }} |
-
-
- | Profession |
- {{ guardian.profession }} |
-
-
-
- {% endfor %}
-
-
-
-
-
FRATRIE
- {% for sibling in student.getSiblings %}
-
-
Frère/Soeur {{ forloop.counter }}
-
-
- | Nom |
- {{ sibling.last_name }} |
- Prénom |
- {{ sibling.first_name }} |
-
-
- | Né(e) le |
- {{ sibling.birth_date }} |
-
-
-
- {% endfor %}
-
-
-
-
-
MODALITÉS DE PAIEMENT
-
-
- | Frais d'inscription |
- {{ student|getRegistrationPaymentMethod }} en {{ student|getRegistrationPaymentPlan }} |
-
-
- | Frais de scolarité |
- {{ student|getTuitionPaymentMethod }} en {{ student|getTuitionPaymentPlan }} |
-
-
-
-
-
-
- Fait le {{ signatureDate }} à {{ signatureTime }}
-
+
+
+
+
+
+ | Nom |
+ {{ student.last_name }} |
+ Prénom |
+ {{ student.first_name }} |
+
+
+ | Genre |
+ {{ student|getStudentGender }} |
+ Niveau |
+ {{ student|getStudentLevel }} |
+
+
+ | Date de naissance |
+ {{ student.formatted_birth_date }} |
+ Lieu de naissance |
+
+ {{ student.birth_place }}{% if student.birth_postal_code %} ({{ student.birth_postal_code }}){% endif %} |
+
+
+ | Nationalité |
+ {{ student.nationality }} |
+ Médecin traitant |
+ {{ student.attending_physician }} |
+
+
+ | Adresse |
+ {{ student.address }} |
+
+
-
-
\ No newline at end of file
+
+
+
+
+ {% for guardian in student.getGuardians %}
+
Responsable {{ forloop.counter }}
+
+
+ | Nom |
+ {{ guardian.last_name }} |
+ Prénom |
+ {{ guardian.first_name }} |
+
+
+ | Date de naissance |
+ {{ guardian.birth_date }} |
+ Téléphone |
+ {{ guardian.phone|phone_format }} |
+
+
+ | Email |
+ {{ guardian.email }} |
+
+
+ | Adresse |
+ {{ guardian.address }} |
+
+
+ | Profession |
+ {{ guardian.profession }} |
+
+
+ {% empty %}
+
+ Aucun responsable renseigné.
+
+ {% endfor %}
+
+
+
+ {% if student.getSiblings %}
+
+
+ {% for sibling in student.getSiblings %}
+
Frère / Sœur {{ forloop.counter }}
+
+
+ | Nom |
+ {{ sibling.last_name }} |
+ Prénom |
+ {{ sibling.first_name }} |
+
+
+ | Date de naissance |
+ {{ sibling.birth_date }} |
+
+
+ {% endfor %}
+
+ {% endif %}
+
+
+
+
+
+
+ | Frais d'inscription |
+
+ {{ student|getRegistrationPaymentMethod }} — {{ student|getRegistrationPaymentPlan }} |
+
+
+ | Frais de scolarité |
+
+ {{ student|getTuitionPaymentMethod }} — {{ student|getTuitionPaymentPlan }} |
+
+
+
+
+
+
+
+ Document généré le
+ {{ signatureDate }} à
+ {{ signatureTime }}
+
+
+
+
+
+
+