EnVisageOnline/Main-RMO/Source/EnVisage/Views/Company/_views.cshtml

23 lines
609 B
Plaintext

@model IList<EnVisage.Models.ViewModel>
<table class="table table-striped table-bordered dataTable" id="uom">
<thead>
<tr>
</tr>
</thead>
<tbody>
@if (Model != null)
{
foreach (var viewModel in Model)
{
<tr>
<td style="width:30px;text-align: right;">
<input type="checkbox" value="@viewModel.Id" name="ViewId" id="ViewId_@viewModel.Id"/>
</td>
<td>@viewModel.Name</td>
</tr>
}
}
</tbody>
</table>