| 123456789101112131415161718192021222324252627282930 |
- @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>Retirer le college</h3>
- <div>
- @using (Html.BeginForm()) {
- @Html.AntiForgeryToken()
- <p>Voulez-vous vraiment retirer le college <b>@actionEduCollege.College.Libelle</b> des colleges concernés par l'action <b>@actionEduCollege.ActionEdu.Nom</b>?</p>
- <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>
|