| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- @using CD67.FicheCollege.MVC.Models
- @model ActionClasViewModel
- @{
- ViewBag.Title = "Details";
- Layout = "~/Views/Shared/_Layout.cshtml";
- ActionCLAS actionClas = Model.Obj;
- }
- <h1>
- Actions éducatives, sportives et culturelles
- <br /><span>du @actionClas.College.Libelle</span>
- </h1>
- <fieldset>
- <legend>
- Actions CLAS
- @if (Model.Acces == ModeAcces.Lecture)
- {
- <div class="pull-right">
- @Html.ActionLink("Modifier", "Edit", "ActionsCLAS", new { Id = actionClas.College_Id }, new { @class = "btn btn-default" })
- </div>
- }
- </legend>
- <dl class="dl-horizontal">
- <dt>
- @Html.DisplayNameFor(model => actionClas.Action)
- </dt>
- <dd>
- @Html.DisplayFor(model => actionClas.Action)
- </dd>
- <dt>
- @Html.DisplayNameFor(model => actionClas.Commentaire)
- </dt>
- <dd style="white-space: pre-line;">@Html.DisplayFor(model => actionClas.Commentaire)</dd>
- </dl>
- </fieldset>
|