Files
webdoorcreator/WebDoorCreator.UI/Components/Hardware/HwMan.razor
T
2023-06-06 11:16:42 +02:00

30 lines
706 B
Plaintext

<h3>HwMan</h3>
<table class="table table-striped">
<thead>
<tr>
<th>Code</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>
<th>@item.OpCode</th>
<th>@item.Description</th>
<th>@item.HwDescription</th>
<th>@item.ValidFrom</th>
<th>@item.ValidUntil</th>
</tr>
}
}
</tbody>
</table>