| 123456789101112131415161718192021222324252627 |
- @using CD67.FicheCollege.MVC.Models
- @model GroupeIndexViewModel
- @{
- ViewBag.Title = "Administration - Utilisateurs";
- Layout = "~/Views/Shared/_AdminLayout.cshtml";
- }
- <h2>Groupes d'utilisateurs</h2>
- <table class="table">
- <tr>
- <th>
- @Html.DisplayNameFor(model => model.Obj.First().Nom)
- </th>
- <th>
- @Html.DisplayNameFor(model => model.Obj.First().Description)
- </th>
- </tr>
- @foreach (var item in Model.Obj.OrderBy(i => i.Nom))
- {
- <tr>
- <td>@Html.DisplayFor(model => item.Nom)</td>
- <td>@Html.DisplayFor(model => item.Description)</td>
- </tr>
- }
- </table>
|