You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

11 lines
317 B

{% if result %}
<div class="alert alert-success">
<strong>Arrivée enregistrée :</strong><br>
Nom : {{ result.nom }}<br>
Classe : {{ result.classe }}<br>
Rang : {{ result.rang }}<br>
Temps : {{ result.temps }}
</div>
{% elif error %}
<div class="alert alert-danger">{{ error }}</div>
{% endif %}