| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- @model CD67.ModeleMVC.Entity.Viking
- @{
- ViewBag.Title = "Delete";
- Layout = "~/Views/Shared/_Layout.cshtml";
- }
- <title>Vikings</title>
- <h1>Suppression</h1>
- <h3>Voulez-vous vraiment supprimer cet enregistrement?</h3>
- <div>
- <h4>Viking</h4>
- <hr />
- <dl class="dl-horizontal">
- <dt>
- @Html.DisplayNameFor(model => model.Nom)
- </dt>
- <dd>
- @Html.DisplayFor(model => model.Nom)
- </dd>
- <dt>
- @Html.DisplayNameFor(model => model.TypeVikingId)
- </dt>
- <dd>
- @Html.DisplayFor(model => model.TypeVikingId)
- </dd>
- </dl>
- @using (Html.BeginForm())
- {
- @Html.AntiForgeryToken()
- <div class="col-md-7">
- </div>
- <div class="form-group col-md-5">
- <input type="submit" value="Supprimer" class="btn btn-danger" />
- <input onclick="location.href='@Url.Action("Index", "Viking")';return false;" value="Retour" class="btn btn-default" />
- </div>
- }
- </div>
|