funky-framadate-front/src/app/shared/components/choice-details/choice-details.component.html

35 lines
709 B
HTML
Raw Normal View History

2020-05-12 19:16:23 +02:00
<div class="columns is-mobile">
<div class="column">
2021-04-27 12:38:12 +02:00
<h1 class="title is-1">Détail des réponses pour "{{ choice.name }}"</h1>
<hr />
<table class="is-fullwidth">
2020-05-12 19:16:23 +02:00
<thead>
<tr>
2021-04-27 12:38:12 +02:00
<th>oui</th>
<th>peut être</th>
<th>non</th>
2020-05-12 19:16:23 +02:00
</tr>
</thead>
<tbody>
<tr>
2021-04-27 12:38:12 +02:00
<td>
<div class="pseudo" *ngFor="let people of choice.yes.people">
{{ people }}
</div>
</td>
<td>
<div class="pseudo" *ngFor="let people of choice.maybe.people">
{{ people }}
</div>
</td>
<td>
<div class="pseudo" *ngFor="let people of choice.no.people">
{{ people }}
</div>
</td>
2020-05-12 19:16:23 +02:00
</tr>
</tbody>
</table>
</div>
</div>