2026-03-18 12:49:28 +01:00
|
|
|
<detail-view>
|
2026-03-31 17:58:49 +02:00
|
|
|
<div if={ props.formation } class="detail-card">
|
2026-03-31 17:55:55 +02:00
|
|
|
<h2>{ props.formation.nom }</h2>
|
|
|
|
|
<p><b>Établissement :</b> { props.formation.etablissement }</p>
|
|
|
|
|
<p><b>Ville :</b> { props.formation.ville }</p>
|
|
|
|
|
<p><b>Département :</b> { props.formation.departement }</p>
|
|
|
|
|
<p><b>Filière :</b> { props.formation.filiere }</p>
|
|
|
|
|
<p><b>Sélectivité :</b> { props.formation.selectivite }</p>
|
|
|
|
|
<p><b>Capacité :</b> { props.formation.capacite }</p>
|
|
|
|
|
<p><b>Candidats :</b> { props.formation.candidats }</p>
|
|
|
|
|
<p><b>Admis :</b> { props.formation.admis }</p>
|
|
|
|
|
<p><b>Taux d'accès :</b> { props.formation.tauxAcces }%</p>
|
|
|
|
|
<button onclick={ () => props.onback() }>Retour</button>
|
2026-03-18 12:49:28 +01:00
|
|
|
</div>
|
2026-03-31 17:55:55 +02:00
|
|
|
</detail-view>
|