funky-framadate-front/src/app/features/consultation/poll-results-detailed/poll-results-detailed.compo...

19 lines
437 B
HTML
Raw Normal View History

2020-05-12 19:16:23 +02:00
<table>
<thead>
<tr>
<th></th>
<th *ngFor="let choice of poll.choices">
{{ choice.name }}
</th>
2020-05-12 19:16:23 +02:00
</tr>
</thead>
<tbody>
<!-- <ng-container *ngFor="let item of buildAnswersByChoiceLabelByPseudo() | keyvalue">-->
<!-- <tr>-->
<!-- <td>{{ item.key }}</td>-->
<!-- <td *ngFor="let subItem of item.name | keyvalue">{{ subItem.name }}</td>-->
<!-- </tr>-->
<!-- </ng-container>-->
2020-05-12 19:16:23 +02:00
</tbody>
</table>