Delete.cshtml 981 B

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