--- /dev/null
+<html>
+<head>
+ <title>AUF CODA fournisseur {{code}}</title>
+</head>
+<body>
+
+<h2>Fournisseur {{CODE}} : {{nom}}</h2>
+
+<table><tr valign="top">
+
+<td>
+<strong>Adresse par défaut ({{categorie}})</strong><br />
+{{ nom_complet }} ({{nom}})<br />
+{% for adr in ( addresse1, addresse2, addresse3, addresse4, addresse5, addresse6 ) %}
+{% if adr and not adr is matching @/^\s*$/ %}
+{{ adr }}<br />
+{% endif %}
+{% endfor %}
+<em>Code postal : </em>{{addresse_code_postal}}<br />
+<em>Pays : </em>{{addresse_pays}}<br />
+<em>Téléphone : </em>{{addresse_telephone}}<br />
+<em>Télécopie : </em>{{addresse_telecopie}}<br />
+</td>
+
+{% for aa in autres_adresses %}
+<td>
+<strong>Adresse {{aa.categorie}}</strong><br />
+{{ nom_complet }} ({{nom}})<br />
+{% for adr in ( aa.adresse1, aa.adresse2, aa.adresse3, aa.adresse4, aa.adresse5, aa.adresse6 ) %}
+{% if adr and not adr is matching @/^\s*$/ %}
+{{ adr }}<br />
+{% endif %}
+{% endfor %}
+<em>Code postal : </em>{{aa.adresse_code_postal}}<br />
+<em>Pays : </em>{{aa.adresse_pays}}<br />
+<em>Téléphone : </em>{{aa.adresse_telephone}}<br />
+<em>Télécopie : </em>{{aa.adresse_telecopie}}<br />
+</td>
+{% endfor %}
+
+</tr></table>
+
+<p />
+<div id="date_creation">
+<em>Fournisseur ajouté le {{ date_creation.day }}/{{ date_creation.month }}/{{ date_creation.year }} par <a href="../utilisateur/{{createur}}.html">{{createur}}</a></em>
+</div>
+
+</body>
+</html>
+
--- /dev/null
+<html>
+<head>
+ <title>AUF CODA utilisateur {{code}}</title>
+</head>
+<body>
+
+<h2>Utilisateur {{nom}}</h2>
+
+<div id="implantation">
+Implantation : {{implantation}}
+</div>
+
+<div id="nom_connexion">
+Code utilisateur TSE : {{nom_connexion}}
+</div>
+
+<div id="date_connnexion">
+Date de dernière connexion : {{ date_connexion }}
+</div>
+
+<div id="date_creation">
+Compte créé le : {{ date_creation }}
+</div>
+
+</body>
+</html>
+