| 1234567891011121314151617181920212223242526272829303132333435 |
- @using CD67.FicheCollege.MVC.Models
- @model ActionEduViewModel
- @{
- ViewBag.Title = "Suppression";
- Layout = "~/Views/Shared/_Layout.cshtml";
- ActionEdu action = Model.Obj;
- }
- <h2>Suppression</h2>
- <h3>Voulez-vous vraiment supprimer cet élément?</h3>
- <div>
- <h4>Action</h4>
- <hr />
- <dl class="dl-horizontal">
- <dt>
- @Html.DisplayNameFor(model => action.Nom)
- </dt>
- <dd>
- @Html.DisplayFor(model => action.Nom)
- </dd>
- </dl>
- @using (Html.BeginForm()) {
- @Html.AntiForgeryToken()
- <div class="form-actions no-color">
- <input type="submit" value="Supprimer" class="btn btn-default" /> |
- @Html.ActionLink("Retour à la liste", "Index")
- </div>
- }
- </div>
|