2026-01-11 13:11:55 +01:00
|
|
|
@model PlanTempus.Application.Features.Dashboard.Components.NotificationListViewModel
|
|
|
|
|
|
|
|
|
|
<swp-card data-key="@Model.Key">
|
2026-01-13 00:09:46 +01:00
|
|
|
<swp-section-header>
|
|
|
|
|
<swp-section-label>@Model.Title</swp-section-label>
|
|
|
|
|
<swp-section-action>@Model.ActionText</swp-section-action>
|
|
|
|
|
</swp-section-header>
|
2026-01-11 13:11:55 +01:00
|
|
|
<swp-card-content>
|
|
|
|
|
<swp-notification-list>
|
|
|
|
|
@foreach (var notificationKey in Model.NotificationKeys)
|
|
|
|
|
{
|
|
|
|
|
@await Component.InvokeAsync("NotificationItem", notificationKey)
|
|
|
|
|
}
|
|
|
|
|
</swp-notification-list>
|
|
|
|
|
</swp-card-content>
|
|
|
|
|
</swp-card>
|