51 lines
2.3 KiB
HTML
51 lines
2.3 KiB
HTML
<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>
|
|
<span class="flex-spacer"></span>
|
|
<button mat-button (click)="onCloseDialog()" class="me-1">Annuler</button>
|
|
<button mat-button color="accent" [mat-dialog-close]="jump" cdkFocusInitial>Supprimer</button>
|
|
</mat-dialog-actions>
|