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

Acteur '@actionEduActeur.Nom'

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