PlanTempusApp/PlanTempus.Application/Features/Dashboard/Components/QuickStatList/Default.cshtml

14 lines
433 B
Text
Raw Normal View History

2026-01-11 18:18:36 +01:00
@model PlanTempus.Application.Features.Dashboard.Components.QuickStatListViewModel
<swp-card data-key="@Model.Key">
<swp-section-label>@Model.Title</swp-section-label>
2026-01-11 18:18:36 +01:00
<swp-card-content>
<swp-quick-stats>
@foreach (var statKey in Model.StatKeys)
{
@await Component.InvokeAsync("QuickStat", statKey)
}
</swp-quick-stats>
</swp-card-content>
</swp-card>