| 123456789101112131415161718192021222324252627282930313233343536373839 |
- @using CD67.FicheCollege.MVC.Models
- @model ActionEduCollegeViewModel
- @{
- ViewBag.Title = "Suppression";
- Layout = "~/Views/Shared/_Layout.cshtml";
- ActionEduCollege actionEduCollege = Model.Obj;
- }
- <header>
- <h2>Suppression</h2>
- </header>
- <h3>Voulez-vous vraiment supprimer cette affectation de l'action '@actionEduCollege.ActionEdu.Nom'?</h3>
- <div>
- <dl class="dl-horizontal">
- <dt>
- @Html.DisplayNameFor(model => actionEduCollege.College.Libelle)
- </dt>
- <dd>
- @Html.DisplayFor(model => actionEduCollege.College.Libelle)
- </dd>
- </dl>
- @using (Html.BeginForm()) {
- @Html.AntiForgeryToken()
- <div class="form-actions no-color">
- <input type="submit" value="Supprimer" class="btn btn-default" />
-
- </div>
- }
- </div>
- <br/>
- <div>
- @Html.ActionLink("Annuler", "Details", new { id = actionEduCollege.Id })
- </div>
|