Files
2023-06-07 12:15:30 +02:00

47 lines
1.1 KiB
Plaintext

<h3>HwMan</h3>
<table class="table table-striped">
<thead>
<tr>
<th></th>
<th>Compo name</th>
<th>Description</th>
<th>Hardware Description</th>
<th>Valid from</th>
<th>Valid To</th>
</tr>
</thead>
<tbody>
@if (doorOpTypes != null)
{
@foreach (var item in doorOpTypes)
{
<tr>
<td><button class="btn btn-primary btn-sm" @onclick="()=>setCurrHw2Show(item)"><i class="fas fa-pen"></i></button></td>
<td>@GetCompoName(item.HwCode)</td>
<td>@item.Description</td>
<td>@item.HwDescription</td>
<td>@item.ValidFrom</td>
<td>@item.ValidUntil</td>
</tr>
}
}
</tbody>
</table>
<div class="modalHwDets">
<div class="modalHwDetsContent">
<div class="modal-header">
</div>
<div class="modal-body">
</div>
<div class="modal-footer">
</div>
</div>
</div>