funky-framadate-front/src/app/features/administration/form/date/list/day/day-list.component.html

40 lines
1.4 KiB
HTML
Raw Normal View History

2021-05-17 16:15:54 +02:00
<div class="day-list-container">
<div class="days-list" [ngClass]="{ 'colored-weekend-days': environment.enable_colored_weekend_days }">
2021-12-21 16:45:19 +01:00
<div class="date-choice-container" *ngFor="let choice of dateChoices; index as id">
<div class="date-choice" [ngClass]="{ 'day-weekend': isWeekendDay(choice.date_input) }">
2021-12-21 16:02:25 +01:00
<div class="top">
<label class="pull-left" for="dateChoices_{{ id }}">
2022-02-02 17:59:55 +01:00
{{ 'dates.element' | translate }} {{ id + 1 }}
2021-12-21 16:02:25 +01:00
</label>
2022-02-02 17:59:55 +01:00
<span class="format-helper pull-right">{{ 'dates.format_helper' | translate }}</span>
2021-12-21 16:02:25 +01:00
<input
[ngModel]="choice.date_object | date: 'yyyy-MM-dd'"
(ngModelChange)="convertDateInput($event, id)"
2021-12-21 16:02:25 +01:00
class="date-choice-item"
name="dateChoices_{{ id }}"
id="dateChoices_{{ id }}"
type="date"
/>
2021-11-18 11:22:44 +01:00
</div>
2021-12-21 16:02:25 +01:00
<div class="bottom">
<div *ngIf="hasSeveralHours" class="several-times">
<app-time-list [timeSlices]="choice.timeSlices" [prefix_choice_id]="id"></app-time-list>
2021-05-20 10:54:28 +02:00
</div>
2021-05-17 15:25:22 +02:00
</div>
<hr />
<div class="button delete-date is-block" (click)="dateChoices.splice(id, 1)">
<img class="icon" aria-hidden="true" src="assets/icons/trash.svg" />
{{ 'dates.remove' | translate }}
</div>
2021-05-17 15:25:22 +02:00
</div>
</div>
<div class="add_date">
<!-- ajouter une date-->
<button class="button is-primary is-fullwidth" (click)="addChoice()">
{{ 'dates.add' | translate }}
</button>
2021-12-07 13:31:59 +01:00
</div>
</div>
2021-05-17 15:25:22 +02:00
</div>