Delete.cshtml 787 B

123456789101112131415161718192021222324252627282930313233
  1. @using CD67.FicheCollege.MVC.Models
  2. @model ActionEduThematiqueViewModel
  3. @{
  4. ViewBag.Title = "Suppression";
  5. Layout = "~/Views/Shared/_AdminLayout.cshtml";
  6. ActionEduThematique thematique = Model.Obj;
  7. }
  8. <h2>Suppression</h2>
  9. <h3>Voulez-vous vraiment supprimer cet élément?</h3>
  10. <div>
  11. <dl class="dl-horizontal">
  12. <dt>
  13. @Html.DisplayNameFor(model => thematique.Nom)
  14. </dt>
  15. <dd>
  16. @Html.DisplayFor(model => thematique.Nom)
  17. </dd>
  18. </dl>
  19. @using (Html.BeginForm()) {
  20. @Html.AntiForgeryToken()
  21. <div class="form-actions no-color">
  22. <input type="submit" value="Supprimer" class="btn btn-default" /> |
  23. @Html.ActionLink("Retour à la liste", "Index")
  24. </div>
  25. }
  26. </div>