@using CD67.FicheCollege.MVC.Models @model ActionEduCollegeViewModel @{ ViewBag.Title = "Details"; Layout = "~/Views/Shared/_Layout.cshtml"; ActionEduCollege actionEduCollege = Model.Obj; }

Action Educative '@actionEduCollege.ActionEdu.Nom' à @actionEduCollege.College.Libelle

Informations @if (Model.Acces == ModeAcces.Lecture) { @Html.ActionLink("Modifier", "Edit", "ActionsEduCollege", new { Id = actionEduCollege.Id }, new { @class = "btn btn-primary" }) @Html.ActionLink("Supprimer", "Delete", "ActionsEduCollege", new { Id = actionEduCollege.Id }, new { @class = "btn btn-default" }) }
@Html.DisplayNameFor(model => actionEduCollege.NbEleves)
@Html.DisplayFor(model => actionEduCollege.NbEleves)
@Html.DisplayNameFor(model => actionEduCollege.Commentaire)
@Html.DisplayFor(model => actionEduCollege.Commentaire)
Retour à l'index