mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
17 lines
594 B
HTML
17 lines
594 B
HTML
|
<div class="poll">
|
||
|
|
||
|
<h1>{{pollConfigFetched.data.title}}</h1>
|
||
|
<p>{{pollConfigFetched.data.description}}</p>
|
||
|
<p class="creationDate">{{pollConfigFetched.data.creationDate.date}}</p>
|
||
|
<p class="expiracyDate">{{pollConfigFetched.data.creationDate.date}}</p>
|
||
|
<p class="votants">
|
||
|
{{pollConfigFetched.stacks_count}} votants,
|
||
|
{{pollConfigFetched.choices_count}} choix,
|
||
|
</p>
|
||
|
</div>
|
||
|
<div class="list-of-choices">
|
||
|
<div *ngFor="let choice of pollConfigFetched.choices">
|
||
|
<framadate-vote-choice [choice]="choice"></framadate-vote-choice>
|
||
|
</div>
|
||
|
</div>
|