| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- @model IEnumerable<CD67.FicheCollege.Entity.College>
- @{
- ViewBag.Title = "Liste";
- Layout = "~/Views/Shared/_Layout.cshtml";
- }
- <h2>Actions</h2>
- <p>
- Gestion des actions éducatives, sportives et Culturelles
- </p>
- <table class="table">
- <tr>
- <th>
- @Html.DisplayNameFor(model => model.Id)
- </th>
- <th>
- @Html.DisplayNameFor(model => model.Libelle)
- </th>
- <th>
- CLAS
- </th>
- <th>
- Commentaire CLAS
- </th>
- <th></th>
- </tr>
- @foreach (var item in Model)
- {
- <tr>
- <td>
- @Html.DisplayFor(modelItem => item.Id)
- </td>
- <td>
- @Html.DisplayFor(modelItem => item.Libelle)
- </td>
- <td>
- @Html.DisplayFor(modelItem => item.Actions_CLAS.Action)
- </td>
- <td style="white-space: pre-line;">@Html.DisplayFor(modelItem => item.Actions_CLAS.Commentaire)</td>
- <td>
- @Html.ActionLink("Modifier", "Details", "ActionsCLAS", new { id = item.Id }, null)
- </td>
- </tr>
- }
- </table>
|