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

21 lines
678 B
HTML
Raw Normal View History

<div class="step">
<div class="min-height">
<section class="supplement">
<app-stepper [step_current]="5" [step_max]="pollService.step_max"></app-stepper>
<app-errors-list [form]="pollService.form"></app-errors-list>
2021-12-06 12:54:37 +01:00
<div class="advanced-config padded">
<h2 class="title is-2">
2021-12-02 15:52:08 +01:00
Configuration avancée
</h2>
<div class="complete" *ngIf="environment.advanced_options_display">
<app-advanced-config [form]="pollService.form"></app-advanced-config>
</div>
</div>
2021-12-02 15:52:08 +01:00
<app-nav-steps
[next_step_number]="pollService.step_current + 1"
[previous_step_number]="pollService.step_current - 1"
></app-nav-steps>
</section>
2021-11-07 14:52:49 +01:00
</div>
</div>