15 lines
731 B
Plaintext
15 lines
731 B
Plaintext
<detail-view>
|
|
<div if={ props.formation } class="detail-card">
|
|
<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>
|
|
</div>
|
|
</detail-view> |