Skip to content

Commit

Permalink
Détail événement : info supplémentaires
Browse files Browse the repository at this point in the history
  • Loading branch information
amandine-sahl committed Jul 3, 2023
1 parent 1db8ee3 commit a569ae8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions front-vite/src/views/EventListingView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,17 @@

<div v-html='selectedEvent.description_teaser'></div>

<div class="my-4">
<div v-if="selectedEvent.target_audience">
<strong> Public : </strong>
<span v-html='selectedEvent.target_audience'></span>
</div>
<div v-if="selectedEvent.bookable">
<div><strong> Nombre de places: </strong> <span v-html='selectedEvent.capacity'></span></div>
<div><strong> Places restantes: </strong><span>{{ selectedEvent.capacity - selectedEvent.sum_participants }}</span></div>
</div>
</div>

<p-tab-view>
<p-tab-panel header="Réservations" v-if="selectedEvent.bookable == true">

Expand Down

0 comments on commit a569ae8

Please sign in to comment.