mirror of
https://framagit.org/framasoft/framadate/funky-framadate-front.git
synced 2023-08-25 13:53:14 +02:00
31 lines
624 B
HTML
31 lines
624 B
HTML
|
<div i18n>
|
||
|
Config spécialement pour les dates
|
||
|
</div>
|
||
|
<div>
|
||
|
<select name="multi_hours" id="multi_hours"
|
||
|
[(ngModel)]="config.allowSeveralHours">
|
||
|
<option value="yes"></option>
|
||
|
<option value="no"></option>
|
||
|
</select>
|
||
|
<label for="multi_hours" i18n>
|
||
|
Je souhaite mettre des créneaux horaires différents pour chaque jour
|
||
|
</label>
|
||
|
|
||
|
</div>
|
||
|
<button
|
||
|
(click)="addDate()"
|
||
|
i18n>
|
||
|
Ajouter une plage de dates
|
||
|
</button>
|
||
|
<div class="dates-list">
|
||
|
{{config.dateList.length}}
|
||
|
<span i18n>
|
||
|
choix de Dates
|
||
|
</span>
|
||
|
<div
|
||
|
*ngFor="let choice of config.dateList"
|
||
|
class="date-choice">
|
||
|
{{choice.text}}
|
||
|
</div>
|
||
|
</div>
|