13 lines
510 B
Text
13 lines
510 B
Text
|
|
@model PlanTempus.Application.Features.Services.Components.ServiceItemViewModel
|
||
|
|
|
||
|
|
<swp-data-table-row data-service-detail="@Model.Id">
|
||
|
|
<swp-data-table-cell>@Model.Name</swp-data-table-cell>
|
||
|
|
<swp-data-table-cell>@Model.Duration min</swp-data-table-cell>
|
||
|
|
<swp-data-table-cell>@Model.Price.ToString("N0") kr</swp-data-table-cell>
|
||
|
|
<swp-data-table-cell>
|
||
|
|
<swp-row-toggle>
|
||
|
|
<i class="ph ph-caret-right"></i>
|
||
|
|
</swp-row-toggle>
|
||
|
|
</swp-data-table-cell>
|
||
|
|
</swp-data-table-row>
|