| 1234567891011121314151617181920212223242526272829303132333435 |
- @using CD67.FicheCollege.MVC.Models
- @model ActionEduActeurViewModel
- @{
- ViewBag.Title = "Details";
- Layout = "~/Views/Shared/_Layout.cshtml";
- ActionEduActeur actionEduActeur = Model.Obj;
- }
- <header>
- <h2>Acteur '@actionEduActeur.Nom'</h2>
- </header>
- <fieldset>
- <legend>
- Informations
- @if (Model.Acces == ModeAcces.Lecture)
- {
- <span class="pull-right">
- @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" })
- </span>
- }
- </legend>
- <dl class="dl-horizontal">
- <dt>@Html.DisplayNameFor(model => actionEduActeur.ActionEduActeurRole.Libelle)</dt>
- <dd>@Html.DisplayFor(model => actionEduActeur.ActionEduActeurRole.Libelle)</dd>
- <dt>@Html.DisplayNameFor(model => actionEduActeur.Commentaire)</dt>
- <dd>@Html.DisplayFor(model => actionEduActeur.Commentaire)</dd>
- </dl>
- </fieldset>
- <a href="@Url.Action("Details", "ActionsEdu", new { id = actionEduActeur.ActionEdu.Id })">Retour à l'index</a>
|