@using CD67.FicheCollege.MVC.Models @model ActionEduActeurViewModel @{ ViewBag.Title = "Création"; Layout = "~/Views/Shared/_Layout.cshtml"; ActionEduActeur actionEduActeur = Model.Obj; }

Action '@actionEduActeur.ActionEdu.Nom': Ajouter un acteur

@using (Html.BeginForm()) { @Html.AntiForgeryToken()
@Html.ValidationSummary(true, "", new { @class = "text-danger" }) @Html.HiddenFor(model => actionEduActeur.Id) @Html.HiddenFor(model => actionEduActeur.ActionEduId)
@Html.LabelFor(model => actionEduActeur.Nom, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => actionEduActeur.Nom, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => actionEduActeur.Nom, "", new { @class = "text-danger" })
@Html.LabelFor(model => actionEduActeur.RoleId, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.DropDownListFor(model => actionEduActeur.RoleId, Model.Sel_Role, htmlAttributes: new { @class = "form-control" }) @Html.ValidationMessageFor(model => actionEduActeur.RoleId, "", new { @class = "text-danger" })
@Html.LabelFor(model => actionEduActeur.Commentaire, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => actionEduActeur.Commentaire, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => actionEduActeur.Commentaire, "", new { @class = "text-danger" })
}