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

26 lines
884 B
HTML
Raw Normal View History

<app-stepper [step_current]="5" [optionnal_step]="true" [step_max]="pollService.step_max"></app-stepper>
2022-03-01 15:38:04 +01:00
<div class="step step-five">
<div class="min-height">
<section class="supplement">
<app-errors-list [form]="pollService.form"></app-errors-list>
2021-12-09 13:19:14 +01:00
<div class="advanced-config">
<h1 class="title-step title is-1" id="step_title">
2022-02-02 17:59:55 +01:00
{{ 'advanced.title' | translate }}
2022-02-28 13:41:33 +01:00
</h1>
2022-02-02 17:59:55 +01:00
<p class="decription">
{{ 'advanced.description' | translate }}
</p>
2021-12-02 15:52:08 +01:00
<div class="complete" *ngIf="environment.advanced_options_display">
<app-advanced-config [form]="pollService.form"></app-advanced-config>
</div>
</div>
</section>
2021-11-07 14:52:49 +01:00
</div>
</div>
2021-12-09 13:19:14 +01:00
<app-nav-steps
[next_step_number]="pollService.step_current + 1"
2022-02-09 12:26:47 +01:00
[previous_step_number]="
pollService.form.value.isAboutDate ? pollService.step_current - 1 : pollService.step_current - 2
"
2021-12-09 13:19:14 +01:00
></app-nav-steps>