@model PlanTempus.Application.Features.Customers.Components.CustomerDetailAppointmentsViewModel @Model.UpcomingTitle @foreach (var appointment in Model.Upcoming) { @appointment.FormattedDate @appointment.Details @Model.MoveButtonText @Model.CancelButtonText } @if (!Model.Upcoming.Any()) {

Ingen kommende aftaler

}
@Model.HistoryTitle @Model.DateHeader @Model.ServiceHeader @Model.HairdresserHeader @Model.DurationHeader @Model.PriceHeader @foreach (var appointment in Model.History) { @appointment.FormattedDate @appointment.Service @appointment.Hairdresser @appointment.Duration @appointment.FormattedPrice } @Model.SeeAllText