@using CD67.FicheCollege.MVC.Models @model ActionEduViewModel @{ ViewBag.Title = "Modification"; Layout = "~/Views/Shared/_Layout.cshtml"; ActionEdu actionEdu = Model.Obj; }

Edition de l'Action Educative '@actionEdu.Nom'

@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.LabelFor(model => actionEdu.ActionEduThematiqueId, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.DropDownListFor(model => actionEdu.ActionEduThematiqueId, Model.Sel_Thematique, htmlAttributes: new { @class = "form-control" }) @Html.ValidationMessageFor(model => actionEdu.ActionEduThematiqueId, "", new { @class = "text-danger" })
@Html.LabelFor(model => actionEdu.Numero, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => actionEdu.Numero, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => actionEdu.Numero, "", new { @class = "text-danger" })
@Html.LabelFor(model => actionEdu.Nom, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => actionEdu.Nom, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => actionEdu.Nom, "", new { @class = "text-danger" })
@Html.LabelFor(model => actionEdu.Montant, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => actionEdu.Montant, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => actionEdu.Montant, "", new { @class = "text-danger" })
@Html.LabelFor(model => actionEdu.TiersSid, htmlAttributes: new { @class = "control-label col-md-2" }) @Html.HiddenFor(model => actionEdu.TiersSid, new { data_picker = "tiers.id" })
@Html.DisplayFor(model => actionEdu.tiers.Id) - @Html.DisplayFor(model => actionEdu.tiers.Nom)
Sélectionner un tiers
@Html.LabelFor(model => actionEdu.Description, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => actionEdu.Description, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => actionEdu.Description, "", new { @class = "text-danger" })
@Html.LabelFor(model => actionEdu.Neutralise, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => actionEdu.Neutralise, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => actionEdu.Neutralise, "", new { @class = "text-danger" })
}
@Html.ActionLink("Annuler", "Details", new { id = actionEdu.Id })
@section Scripts { @Scripts.Render("~/bundles/jqueryval") }