| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- @using CD67.FicheCollege.MVC.Models
- @model AnneeViewModel
- <title>Actions @Model.Annee_Lib</title>
- @{
- ViewBag.Title = "Actions " + @Model.Annee_Lib;
- Layout = "~/Views/Shared/_Layout.cshtml";
- ActionEdu action_model = new ActionEdu();
- }
- <h2>Index</h2>
- <h3>Affectation</h3>
- <table class="table">
- <tr>
- <th>
- @Html.DisplayNameFor(model => action_model.Nom)
- </th>
- <th></th>
- </tr>
- @foreach (ActionEdu item in Model.Obj.ActionsEdu.OrderBy(a => a.Ordre))
- {
- <tr>
- <td>
- @Html.DisplayFor(modelItem => item.Nom)
- </td>
- <td>
- Collèges concernés: @item.ActionsEduColleges.Count()
- <a href="@Url.Action("Voir", new { id = item.Id })">
- <span class="glyphicon glyphicon-plus-sign fa-2x color1" title="Voir" style="vertical-align: middle" aria-hidden="true"></span>
- </a>
- </td>
- </tr>
- }
- </table>
- <h3>Administration</h3>
- <ul>
- <li>@Html.ActionLink("Les axes", "Index", "ActionEduAxes")</li>
- <li>@Html.ActionLink("Les thématiques", "Index", "ActionEduThematiques")</li>
- <li>@Html.ActionLink("Les actions " + @Model.Annee_Lib, "Index", "ActionsEdu", new { annee_id = Model.Obj.Id }, null)</li>
- </ul>
|