Delete.cshtml 1.0 KB

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