funky-framadate-front/src/app/pages/resume/resume.component.html

81 lines
1.9 KiB
HTML
Raw Normal View History

2020-01-20 15:01:56 +01:00
<h1 >
2019-11-23 15:46:07 +01:00
Récapitulatif
2020-01-20 15:01:56 +01:00
</h1 >
<div class='card content' >
2019-11-23 15:46:07 +01:00
2020-01-20 15:01:56 +01:00
<h2 class="hero-title title" >
{{config.title}}
</h2 >
<div class="creation" >
créé par
2020-01-24 11:10:50 +01:00
<i class='pseudo' >
{{config.myName}}
</i >
2020-01-20 15:01:56 +01:00
</div >
<div class="description" >
2020-01-24 11:10:50 +01:00
<cite >
2020-01-20 15:01:56 +01:00
{{config.description}}
2020-01-24 11:10:50 +01:00
</cite >
2020-01-20 15:01:56 +01:00
</div >
2020-01-24 11:10:50 +01:00
<section
class='preview type-classic'
*ngIf='config.pollType == "classic"' >
2020-01-20 15:01:56 +01:00
<ul >
<li
markdown
*ngFor="let questions of config.answers" >
<img
class='img-thumbnail'
src='{{questions.url}}'
alt='image {{questions.url}}' >
{{questions.id + 1}}. {{questions.text}}
</li >
</ul >
</section >
2020-01-24 11:10:50 +01:00
<section
class='type-date'
*ngIf='config.pollType == "dates"' >
<div
*ngFor="let choice of config.dateList; index as id"
class="date-choice"
>
{{choice.literal}}
<div
*ngIf="'true'==config.allowSeveralHours"
class="several-times"
>
<div
*ngFor="let time of choice.timeList; index as idTime"
class="time-choice"
>
{{time.literal}}
</div >
</div >
</div >
</section >
2020-01-20 15:01:56 +01:00
</div >
2020-01-20 15:23:26 +01:00
2020-01-24 11:10:50 +01:00
<button
[routerLink]="'/step/visibility'"
class="btn btn--primary btn--full" >
2020-01-20 15:23:26 +01:00
C'est parfait!
2020-01-24 11:10:50 +01:00
</button >
2020-01-20 15:01:56 +01:00
<div class="back" >
<a
2020-01-24 11:10:50 +01:00
*ngIf='config.pollType == "classic"'
2020-01-20 15:01:56 +01:00
[routerLink]="'/step/answers'"
class="prev" >
2019-11-23 15:46:07 +01:00
Retour
2020-01-20 15:01:56 +01:00
</a >
2020-01-24 11:10:50 +01:00
<a
*ngIf='config.pollType == "dates"'
[routerLink]="'/step/dates'"
class="prev" >
Retour
</a >
2020-01-20 15:01:56 +01:00
</div >