wip
This commit is contained in:
parent
abcf8ee75e
commit
12869e35bf
34 changed files with 1177 additions and 156 deletions
|
|
@ -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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue