@using CD67.FicheCollege.MVC.Models
@model RestaurationTypeViewModel
@{
ViewBag.Title = "Suppression";
Layout = "~/Views/Shared/_AdminLayout.cshtml";
RestaurationType type = Model.Obj;
}
Suppression
Voulez-vous vraiment supprimer cet élément?
Type de restauration
-
@Html.DisplayNameFor(model => type.Libelle)
-
@Html.DisplayFor(model => type.Libelle)
-
@Html.DisplayNameFor(model => type.Valid)
-
@Html.DisplayFor(model => type.Valid)
@using (Html.BeginForm()) {
@Html.AntiForgeryToken()
|
@Html.ActionLink("Retour à la liste", "Index")
}