@page "/schedules"
@using NimbusFlow.Frontend.Services
@using NimbusFlow.Frontend.Models
@inject IApiService ApiService
@inject IJSRuntime JSRuntime
| Member | Service Date | Service Type | Status | Scheduled At | Response Date | Actions |
|---|---|---|---|---|---|---|
| @schedule.Member?.FullName | @schedule.Service?.ServiceDate.ToString("MMM dd, yyyy") | @schedule.Service?.ServiceTypeName | @schedule.Status.ToUpper() | @schedule.ScheduledAt.ToString("MMM dd, yyyy HH:mm") | @if (schedule.AcceptedAt.HasValue) { @schedule.AcceptedAt.Value.ToString("MMM dd, yyyy HH:mm") } else if (schedule.DeclinedAt.HasValue) { @schedule.DeclinedAt.Value.ToString("MMM dd, yyyy HH:mm") } else { - } |