Delete.cshtml 781 B

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