Ajout des sources

This commit is contained in:
Julien Gautier
2023-09-12 21:46:56 +02:00
parent fa2288b8ed
commit 747948a422
235 changed files with 45064 additions and 0 deletions
@@ -0,0 +1,49 @@
<h2 mat-dialog-title>Supprimer le saut n°{{jump.numero}}</h2>
<mat-divider class="mt-2 mb-1 border-light-subtle"></mat-divider>
<mat-dialog-content>
<p class="mt-2 mb-3 text-accent">Veuillez confirmer la suppression de ce saut. Attention, cette action est irréversible.</p>
<h3>Données du saut :</h3>
<div class="mb-3 clearfix">
<dl class="dl-horizontal">
<dt class="text-lowercase text-bold">numero:</dt>
<dd>{{jump.numero}}</dd>
<dt class="text-lowercase text-bold">date:</dt>
<dd>{{jump.date}}</dd>
<dt class="text-lowercase text-bold">lieu:</dt>
<dd>{{jump.lieu}}</dd>
<dt class="text-lowercase text-bold">oaci:</dt>
<dd>{{jump.oaci}}</dd>
<dt class="text-lowercase text-bold">aeronef:</dt>
<dd>{{jump.aeronef}}</dd>
<dt class="text-lowercase text-bold">imat:</dt>
<dd>{{jump.imat}}</dd>
<dt class="text-lowercase text-bold">hauteur:</dt>
<dd>{{jump.hauteur}}</dd>
<dt class="text-lowercase text-bold">voile:</dt>
<dd>{{jump.voile}}</dd>
<dt class="text-lowercase text-bold">taille:</dt>
<dd>{{jump.taille}}</dd>
<dt class="text-lowercase text-bold">categorie:</dt>
<dd>{{jump.categorie}}</dd>
<dt class="text-lowercase text-bold">module:</dt>
<dd>{{jump.module}}</dd>
<dt class="text-lowercase text-bold">participants:</dt>
<dd>{{jump.participants}}</dd>
<dt class="text-lowercase text-bold">programme:</dt>
<dd>{{jump.programme}}</dd>
<dt class="text-lowercase text-bold">accessoires:</dt>
<dd>{{jump.accessoires}}</dd>
<dt class="text-lowercase text-bold">zone:</dt>
<dd>{{jump.zone}}</dd>
<dt class="text-lowercase text-bold">dossier:</dt>
<dd>{{jump.dossier}}</dd>
<dt class="text-lowercase text-bold">video:</dt>
<dd>{{jump.video}}</dd>
</dl>
</div>
<hr />
</mat-dialog-content>
<mat-dialog-actions>
<button mat-button (click)="onCloseDialog()">Annuler</button>
<button mat-button color="accent" [mat-dialog-close]="jump" cdkFocusInitial>Supprimer</button>
</mat-dialog-actions>