Delete.cshtml 738 B

123456789101112131415161718192021222324252627282930313233
  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.Libelle)
  14. </dt>
  15. <dd>
  16. @Html.DisplayFor(model => model.Libelle)
  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>