| 123456789101112131415161718192021222324252627282930313233 |
- @model CD67.FicheCollege.Entity.Territoire
- @{
- ViewBag.Title = "Suppression";
- Layout = "~/Views/Shared/_Layout.cshtml";
- }
- <h2>Suppression</h2>
- <h3>Voulez-vous vraiment supprimer cet élément?</h3>
- <div>
- <h4>Territoire</h4>
- <hr />
- <dl class="dl-horizontal">
- <dt>
- @Html.DisplayNameFor(model => model.Libelle)
- </dt>
- <dd>
- @Html.DisplayFor(model => model.Libelle)
- </dd>
- </dl>
- @using (Html.BeginForm()) {
- @Html.AntiForgeryToken()
- <div class="form-actions no-color">
- <input type="submit" value="Supprimer" class="btn btn-default" /> |
- @Html.ActionLink("Retour à la liste", "Index")
- </div>
- }
- </div>
|