@using CD67.FicheCollege.MVC.Models
@model ActionEduViewModel
@{
ViewBag.Title = "Création";
Layout = "~/Views/Shared/_Layout.cshtml";
ActionEdu actionEdu = Model.Obj;
}
Nouvelle Action Educative
@using (Html.BeginForm())
{
@Html.AntiForgeryToken()
@Html.ValidationSummary(true, "", new { @class = "text-danger" })
@Html.HiddenFor(model => actionEdu.Id)
@Html.HiddenFor(model => actionEdu.Ordre)
@Html.HiddenFor(model => actionEdu.AnneeId)
@Html.HiddenFor(model => actionEdu.Neutralise)
@Html.HiddenFor(model => actionEdu.TokenId)
}