wip
This commit is contained in:
parent
abcf8ee75e
commit
12869e35bf
34 changed files with 1177 additions and 156 deletions
|
|
@ -0,0 +1,18 @@
|
|||
@model PlanTempus.Application.Features.Dashboard.Components.QuickStatListViewModel
|
||||
|
||||
<swp-card data-key="@Model.Key">
|
||||
<swp-card-header>
|
||||
<swp-card-title>
|
||||
<i class="ph ph-@Model.Icon"></i>
|
||||
@Model.Title
|
||||
</swp-card-title>
|
||||
</swp-card-header>
|
||||
<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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue