EnVisageOnline/Beta/Source/EnVisage/Views/View/_editTeams.cshtml

19 lines
559 B
Plaintext

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