20 lines
535 B
Plaintext
20 lines
535 B
Plaintext
@model IEnumerable<EnVisage.Models.ViewModel>
|
|
<table class="table table-striped dataTable" id="users">
|
|
<thead>
|
|
</thead>
|
|
<tbody>
|
|
@if (Model != null)
|
|
{
|
|
foreach (var item in Model)
|
|
{
|
|
<tr>
|
|
<td style="width: 30px; text-align: right;">
|
|
<input type="checkbox" value="@item.Id" name="ViewId" id="viewId_@item.Id"/>
|
|
</td>
|
|
<td>@item.Name</td>
|
|
</tr>
|
|
}
|
|
}
|
|
</tbody>
|
|
</table>
|