22 lines
602 B
Plaintext
22 lines
602 B
Plaintext
@model IEnumerable<SelectListItem>
|
|
|
|
<table class="table table-striped table-bordered dataTable" id="uom">
|
|
<thead>
|
|
<tr>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@if (Model != null)
|
|
{
|
|
foreach (var client in Model)
|
|
{
|
|
<tr>
|
|
<td style="width:30px;text-align: right;">
|
|
<input type="checkbox" value="@client.Value" name="ClientId" id="clientId_@client.Value"/>
|
|
</td>
|
|
<td>@client.Text</td>
|
|
</tr>
|
|
}
|
|
}
|
|
</tbody>
|
|
</table> |