| 12345678910111213141516171819202122 |
- @using CD67.FicheCollege.MVC.Models
- @model AnneeViewModel
- <title>Actions @Model.Annee_Lib</title>
- @{
- ViewBag.Title = "Actions " + @Model.Annee_Lib;
- Layout = "~/Views/Shared/_Layout.cshtml";
- }
- <h2>Index</h2>
- <h3>Affectation</h3>
- <br/>
- <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>
|