Files
n3wt-school/Back-End/GestionInscriptions/templates/pdfs/dossier_inscription.html
Luc SORIGNET af0cd1c840 chore: Initial Commit
feat: Gestion des inscriptions [#1]
feat(frontend): Création des vues pour le paramétrage de l'école [#2]
feat: Gestion du login [#6]
fix: Correction lors de la migration des modèle [#8]
feat: Révision du menu principal [#9]
feat: Ajout d'un footer [#10]
feat: Création des dockers compose pour les environnements de
développement et de production [#12]
doc(ci): Mise en place de Husky et d'un suivi de version automatique [#14]
2024-11-18 16:06:21 +01:00

97 lines
3.8 KiB
HTML

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta charset="UTF-8">
<title>{{ pdf_title }}</title>
<style type="text/css">
body {
font-weight: 200;
font-size: 14px;
}
.header {
font-size: 20px;
font-weight: 100;
text-align: center;
color: #007cae;
}
.title {
font-size: 22px;
font-weight: 100;
/* text-align: right;*/
padding: 10px 20px 0px 20px;
}
.title span {
color: #007cae;
}
.details {
padding: 10px 20px 0px 20px;
text-align: left !important;
/*margin-left: 40%;*/
}
.hrItem {
border: none;
height: 1px;
/* Set the hr color */
color: #333; /* old IE */
background-color: #fff; /* Modern Browsers */
}
</style>
</head>
<body>
{% load myTemplateTag %}
<div class='wrapper'>
<div class='header'>
<p class='title'>{{ pdf_title }}</p>
</div>
<div>
<div class='details'>
Signé le : <b>{{ dateSignature }}</b> <br/>
A : <b>{{ heureSignature }}</b>
<hr class='hrItem' />
<h1>ELEVE</h1>
{% with niveau=eleve|recupereNiveauEleve %}
{% with genre=eleve|recupereGenreEleve %}
NOM : <b>{{ eleve.nom }}</b> <br/>
PRENOM : <b>{{ eleve.prenom }}</b> <br/>
ADRESSE : <b>{{ eleve.adresse }}</b> <br/>
GENRE : <b>{{ genre }}</b> <br/>
NE(E) LE : <b>{{ eleve.dateNaissance }}</b> <br/>
A : <b>{{ eleve.lieuNaissance }} ({{ eleve.codePostalNaissance }})</b> <br/>
NATIONALITE : <b>{{ eleve.nationalite }}</b> <br/>
NIVEAU : <b>{{ niveau }}</b> <br/>
MEDECIN TRAITANT : <b>{{ eleve.medecinTraitant }}</b> <br/>
{% endwith %}
{% endwith %}
<hr class='hrItem' />
<h1>RESPONSABLES</h1>
{% with responsables_List=eleve.getResponsables %}
{% with freres_List=eleve.getFreres %}
{% for responsable in responsables_List%}
<h2>Responsable {{ forloop.counter }}</h2>
NOM : <b>{{ responsable.nom }}</b> <br/>
PRENOM : <b>{{ responsable.prenom }}</b> <br/>
ADRESSE : <b>{{ responsable.adresse }}</b> <br/>
NE(E) LE : <b>{{ responsable.dateNaissance }}</b> <br/>
MAIL : <b>{{ responsable.mail }}</b> <br/>
TEL : <b>{{ responsable.telephone }}</b> <br/>
PROFESSION : <b>{{ responsable.profession }}</b> <br/>
{% endfor %}
<hr class='hrItem' />
<h1>FRATRIE</h1>
{% for frere in freres_List%}
<h2>Frère - Soeur {{ forloop.counter }}</h2>
NOM : <b>{{ frere.nom }}</b> <br/>
PRENOM : <b>{{ frere.prenom }}</b> <br/>
NE(E) LE : <b>{{ frere.dateNaissance }}</b> <br/>
{% endfor %}
<hr class='hrItem' />
<h1>MODALITES DE PAIEMENT</h1>
{% with modePaiement=eleve|recupereModePaiement %}
<b>{{ modePaiement }}</b> <br/>
{% endwith %}
{% endwith %}
{% endwith %}
</div>
</div>
</body>
</html>