EnVisageOnline/Main-RMO/Source/EnVisage/Views/Team/_users.cshtml

20 lines
524 B
Plaintext

@model IEnumerable<AspNetUser>
<table class="table table-striped dataTable" id="users">
<thead>
</thead>
<tbody>
@if (Model != null)
{
foreach (var user in Model)
{
<tr>
<td style="width: 30px; text-align: right;">
<input type="checkbox" value="@user.Id" name="UserId" id="userId_@user.Id"/>
</td>
<td>@user.UserName</td>
</tr>
}
}
</tbody>
</table>