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

21 lines
656 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">
2021-12-06 12:54:37 +01:00
<h2 class="title is-2">
2021-12-21 16:55:02 +01:00
Paramétrez le sondage
2021-12-02 15:52:08 +01:00
</h2>
<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>