This commit is contained in:
Janus C. H. Knudsen 2026-01-11 18:18:36 +01:00
parent abcf8ee75e
commit 12869e35bf
34 changed files with 1177 additions and 156 deletions

View file

@ -0,0 +1,21 @@
@using PlanTempus.Application.Features.Dashboard.Components
<swp-waitlist-drawer data-drawer="lg" id="waitlist-drawer">
<swp-drawer-header>
<swp-drawer-title>
Venteliste <swp-count>(@WaitlistItemCatalog.AllKeys.Count())</swp-count>
</swp-drawer-title>
<swp-drawer-close data-drawer-close>
<i class="ph ph-x"></i>
</swp-drawer-close>
</swp-drawer-header>
<swp-drawer-body>
<swp-waitlist-list>
@foreach (var key in WaitlistItemCatalog.AllKeys)
{
@await Component.InvokeAsync("WaitlistItem", key)
}
</swp-waitlist-list>
</swp-drawer-body>
</swp-waitlist-drawer>