Index.cshtml 552 B

12345678910111213141516171819202122
  1. @using CD67.FicheCollege.MVC.Models
  2. @model AnneeViewModel
  3. <title>Actions @Model.Annee_Lib</title>
  4. @{
  5. ViewBag.Title = "Actions " + @Model.Annee_Lib;
  6. Layout = "~/Views/Shared/_Layout.cshtml";
  7. }
  8. <h2>Index</h2>
  9. <h3>Affectation</h3>
  10. <br/>
  11. <h3>Administration</h3>
  12. <ul>
  13. <li>@Html.ActionLink("Les axes", "Index", "ActionAxes")</li>
  14. <li>@Html.ActionLink("Les thématiques", "Index", "ActionThematiques")</li>
  15. <li>@Html.ActionLink("Les actions " + @Model.Annee_Lib, "Index", "Admin", new { annee_id = Model.Obj.Id }, null)</li>
  16. </ul>