You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.8 KiB
HTML
68 lines
1.8 KiB
HTML
<div class="form-field">
|
|
<!-- Choisir les propositions -->
|
|
<!-- sondage classique texte -->
|
|
<h2>
|
|
{{ 'choices.title' | translate }}
|
|
</h2>
|
|
{{ 'dates.add' | translate }}
|
|
<p>
|
|
<i>
|
|
{{ 'choices.helper' | translate }}
|
|
</i>
|
|
</p>
|
|
{{ 'choices.answer_preset_1' | translate }}
|
|
{{ 'choices.add' | translate }}
|
|
{{ 'choices.continue' | translate }}
|
|
<span>
|
|
<span class="columns">
|
|
<span class="column">
|
|
<button class="btn is-primary" (click)="addChoice()">
|
|
<i class="fa fa-plus"></i>
|
|
Ajouter un choix
|
|
</button>
|
|
</span>
|
|
<span class="column pull-right">
|
|
<button class="btn is-warning" (click)="reinitChoices()">
|
|
<i class="fa fa-recycle"></i>
|
|
Réinitialiser
|
|
</button>
|
|
</span>
|
|
</span>
|
|
|
|
<p class="hint">
|
|
{{ 'creation.choices_hint' | translate }}
|
|
</p>
|
|
<span *ngFor="let choice of choices.controls; let i = index">
|
|
<div class="form-row" [formGroup]="choice">
|
|
<div class="columns">
|
|
<div class="column">
|
|
<button class="btn btn-warning" (click)="deleteChoiceField(i)">
|
|
<i class="fa fa-times"></i>
|
|
</button>
|
|
{{ i * 1 + 1 }})
|
|
</div>
|
|
<div class="column">
|
|
<label [for]="'choice_label_' + i" class="hidden">label</label>
|
|
<input
|
|
formControlName="label"
|
|
[id]="'choice_label_' + i"
|
|
placeholder="Enter a choice description"
|
|
(keyup)="keyOnChoice($event, i)"
|
|
(keyup.backspace)="deleteChoiceField(i)"
|
|
/>
|
|
<br />
|
|
<label [for]="'image_url_' + i" class="hidden">image Url</label>
|
|
<input
|
|
formControlName="imageUrl"
|
|
[id]="'image_url_' + i"
|
|
placeholder="URL de l' image"
|
|
(keyup)="keyOnChoice($event, i)"
|
|
(keyup.backspace)="deleteChoiceField(i)"
|
|
/>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</span>
|
|
</span>
|
|
</div>
|