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

24 lines
750 B
HTML
Raw Normal View History

<app-stepper [step_current]="5" [step_max]="pollService.step_max"></app-stepper>
<div class="step">
<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">
2022-02-04 15:09:48 +01:00
<h2 class="title is-3">
2022-02-02 17:59:55 +01:00
{{ 'advanced.title' | translate }}
2021-12-02 15:52:08 +01:00
</h2>
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"
[previous_step_number]="pollService.step_current - 1"
></app-nav-steps>