Index.cshtml 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. @model IEnumerable<CD67.FicheCollege.Entity.College>
  2. @{
  3. ViewBag.Title = "Liste";
  4. Layout = "~/Views/Shared/_Layout.cshtml";
  5. }
  6. <h2>Actions</h2>
  7. <p>
  8. Gestion des actions éducatives, sportives et Culturelles
  9. </p>
  10. <table class="table">
  11. <tr>
  12. <th>
  13. @Html.DisplayNameFor(model => model.Id)
  14. </th>
  15. <th>
  16. @Html.DisplayNameFor(model => model.Libelle)
  17. </th>
  18. <th>
  19. CLAS
  20. </th>
  21. <th>
  22. Commentaire CLAS
  23. </th>
  24. <th></th>
  25. </tr>
  26. @foreach (var item in Model)
  27. {
  28. <tr>
  29. <td>
  30. @Html.DisplayFor(modelItem => item.Id)
  31. </td>
  32. <td>
  33. @Html.DisplayFor(modelItem => item.Libelle)
  34. </td>
  35. <td>
  36. @Html.DisplayFor(modelItem => item.Actions_CLAS.Action)
  37. </td>
  38. <td style="white-space: pre-line;">@Html.DisplayFor(modelItem => item.Actions_CLAS.Commentaire)</td>
  39. <td>
  40. @Html.ActionLink("Modifier", "Details", "ActionsCLAS", new { id = item.Id }, null)
  41. </td>
  42. </tr>
  43. }
  44. </table>