@using CD67.FicheCollege.MVC.Models
@model AnneeViewModel
Actions @Model.Annee_Lib
@{
ViewBag.Title = "Actions " + @Model.Annee_Lib;
Layout = "~/Views/Shared/_Layout.cshtml";
ActionEdu action_model = new ActionEdu();
}
Index
Affectation
|
@Html.DisplayNameFor(model => action_model.Nom)
|
|
@foreach (ActionEdu item in Model.Obj.ActionsEdu.OrderBy(a => a.Ordre))
{
|
@Html.DisplayFor(modelItem => item.Nom)
|
Collèges concernés: @item.ActionsEduColleges.Count()
|
}
Administration
- @Html.ActionLink("Les axes", "Index", "ActionEduAxes")
- @Html.ActionLink("Les thématiques", "Index", "ActionEduThematiques")
- @Html.ActionLink("Les actions " + @Model.Annee_Lib, "Index", "ActionsEdu", new { annee_id = Model.Obj.Id }, null)