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