@using CD67.FicheCollege.MVC.Models
@model ActionEduAxeViewModel
@{
ViewBag.Title = "Suppression";
Layout = "~/Views/Shared/_Layout.cshtml";
ActionEduAxe axe = Model.Obj;
}
Suppression
Voulez-vous vraiment supprimer cet élément?
Axe
-
@Html.DisplayNameFor(model => axe.Nom)
-
@Html.DisplayFor(model => axe.Nom)
@using (Html.BeginForm()) {
@Html.AntiForgeryToken()
|
@Html.ActionLink("Retour à la liste", "Index")
}