Index.cshtml 670 B

123456789101112131415161718192021222324252627
  1. @using CD67.FicheCollege.MVC.Models
  2. @model GroupeIndexViewModel
  3. @{
  4. ViewBag.Title = "Administration - Utilisateurs";
  5. Layout = "~/Views/Shared/_AdminLayout.cshtml";
  6. }
  7. <h2>Groupes d'utilisateurs</h2>
  8. <table class="table">
  9. <tr>
  10. <th>
  11. @Html.DisplayNameFor(model => model.Obj.First().Nom)
  12. </th>
  13. <th>
  14. @Html.DisplayNameFor(model => model.Obj.First().Description)
  15. </th>
  16. </tr>
  17. @foreach (var item in Model.Obj.OrderBy(i => i.Nom))
  18. {
  19. <tr>
  20. <td>@Html.DisplayFor(model => item.Nom)</td>
  21. <td>@Html.DisplayFor(model => item.Description)</td>
  22. </tr>
  23. }
  24. </table>