funky-framadate-front/src/app/features/administration/form/steps/step-seven/step-seven.component.html

89 lines
3.0 KiB
HTML
Raw Normal View History

<app-stepper [step_current]="7" [step_max]="pollService.step_max"></app-stepper>
2021-12-02 15:52:08 +01:00
<div class="step min-height step-resume">
2021-11-18 12:00:03 +01:00
<div class="columns content">
2021-11-18 10:49:55 +01:00
<div class="column">
2021-11-18 11:41:23 +01:00
<h2 class="title is-2">
2022-02-02 17:59:55 +01:00
{{ 'resume.title' | translate }}
2021-11-18 11:41:23 +01:00
</h2>
<p class="helper">
2022-02-02 17:59:55 +01:00
{{ 'resume.description' | translate }}
2021-11-18 11:41:23 +01:00
</p>
<div class="resume">
2022-02-02 17:59:55 +01:00
<h3 class="title is-3">{{ 'resume.general' | translate }}</h3>
2021-11-18 11:41:23 +01:00
<div class="block-resume">
2021-11-18 12:00:03 +01:00
<h3 class="title is-4">
{{ pollService.form.value.title }}
</h3>
<p class="description">
{{ pollService.form.value.description }}
</p>
2021-11-18 11:41:23 +01:00
<hr />
2021-11-18 12:00:03 +01:00
<div class="go-to-step" [routerLink]="['/administration/step/1']">
2022-02-02 17:59:55 +01:00
<img class="icon" src="assets/icons/edit.svg" alt="icone crayon" />
{{ 'resume.edit' | translate }}
2021-11-18 11:41:23 +01:00
</div>
</div>
2022-02-02 17:59:55 +01:00
<h3 class="title is-3">{{ 'resume.kind' | translate }}</h3>
2021-11-18 11:41:23 +01:00
<div class="block-resume">
2021-11-18 12:00:03 +01:00
{{ pollService.form.value.isAboutDate ? 'Date' : 'Propositions' }}
2021-11-18 11:41:23 +01:00
<hr />
2021-11-18 12:00:03 +01:00
<div class="go-to-step" [routerLink]="['/administration/step/2']">
2022-02-02 17:59:55 +01:00
<i class="fa fa-pencil"></i> {{ 'resume.edit' | translate }}
2021-11-18 11:41:23 +01:00
</div>
</div>
2022-02-02 17:59:55 +01:00
<h3 class="title is-3">{{ 'resume.dates_and_hours' | translate }}</h3>
2021-11-18 11:41:23 +01:00
<div class="block-resume">
2021-11-18 12:00:03 +01:00
<div class="list-datechoices" *ngIf="pollService.form.value.isAboutDate">
<ul *ngFor="let choice of pollService.dateChoiceList">
<li>
<span class="date">
{{ choice.date_object | date: 'E d/M/yyy':'Europe/Paris':'fr_FR' }}
</span>
2021-11-18 12:00:03 +01:00
</li>
</ul>
</div>
<div class="list-texts" *ngIf="!pollService.form.value.isAboutDate">
<!-- <ul *ngFor="let choice of pollService.choices">-->
<!-- <li>-->
<!-- {{ choice }}-->
<!-- </li>-->
<!-- </ul>-->
2021-11-18 12:00:03 +01:00
</div>
2021-11-18 11:41:23 +01:00
<hr />
2021-11-18 12:00:03 +01:00
<div class="go-to-step" [routerLink]="['/administration/step/3']">
2022-02-02 17:59:55 +01:00
<i class="fa fa-pencil"></i> {{ 'resume.edit' | translate }}
2021-11-18 11:41:23 +01:00
</div>
</div>
2022-02-02 17:59:55 +01:00
<h3 class="title is-3">{{ 'resume.params_notifs' | translate }}</h3>
2021-11-18 11:41:23 +01:00
<div class="block-resume">
2021-11-18 12:00:03 +01:00
<div class="password">
Protégé par mot de passe: {{ pollService.form.value.isProtectedByPassword ? 'oui' : 'non' }}
</div>
2021-11-18 11:41:23 +01:00
<hr />
2021-11-18 12:00:03 +01:00
<div class="go-to-step clickable" [routerLink]="['/administration/step/4']">
2022-02-02 17:59:55 +01:00
<i class="fa fa-pencil"></i> {{ 'resume.edit' | translate }}
2021-11-18 11:41:23 +01:00
</div>
</div>
2022-02-02 17:59:55 +01:00
<h3 class="title is-3">{{ 'resume.owner' | translate }}</h3>
2021-11-18 11:41:23 +01:00
<div class="block-resume">
2021-11-18 12:00:03 +01:00
<div class="name">
{{ pollService.form.value.creatorPseudo }}
</div>
<div class="email">
{{ pollService.form.value.creatorEmail }}
</div>
2021-11-18 11:41:23 +01:00
<hr />
2021-11-18 12:00:03 +01:00
<div class="go-to-step" [routerLink]="['/administration/step/6']">
2022-02-02 17:59:55 +01:00
<i class="fa fa-pencil"></i> {{ 'resume.edit' | translate }}
2021-11-18 11:41:23 +01:00
</div>
</div>
</div>
2021-11-18 10:49:55 +01:00
</div>
</div>
</div>
<app-nav-steps
[next_step_number]="pollService.step_current + 1"
[previous_step_number]="pollService.step_current - 1"
[is_finish_step]="true"
></app-nav-steps>