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.AttentionListViewModel
|
||||
|
||||
<swp-card data-key="@Model.Key">
|
||||
<swp-card-header>
|
||||
<swp-card-title>
|
||||
<i class="ph ph-warning-circle"></i>
|
||||
@Model.Title
|
||||
</swp-card-title>
|
||||
</swp-card-header>
|
||||
<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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue