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

16 lines
501 B
Text
Raw Permalink Normal View History

2026-01-11 18:18:36 +01:00
@model PlanTempus.Application.Features.Dashboard.Components.AttentionListViewModel
<swp-card data-key="@Model.Key">
<swp-card-header>
<swp-card-title>@Model.Title</swp-card-title>
</swp-card-header>
2026-01-11 18:18:36 +01:00
<swp-card-content>
<swp-attention-list>
@foreach (var attentionKey in Model.AttentionKeys)
{
@await Component.InvokeAsync("AttentionItem", attentionKey)
}
</swp-attention-list>
</swp-card-content>
</swp-card>