@using CD67.FicheCollege.MVC.Models
@model ActionEduViewModel
@{
ViewBag.Title = "Details";
Layout = "~/Views/Shared/_Layout.cshtml";
ActionEdu actionEdu = Model.Obj;
}
Les Actions
@Html.ActionLink("Retour à la liste", "Index")
@actionEdu.Nom
@if (Model.Acces == ModeAcces.Lecture)
{
foreach (ActionEduCollege item in Model.Obj.ActionsEduColleges)
{
@item.College.Libelle @Html.ActionLink("Voir", "Details", "ActionsEduCollege", new { Id = item.Id }, new { @class = "btn btn-default" })
}
}