@using CD67.FicheCollege.MVC.Models @model CollegeViewModel @{ ViewBag.Title = Model.Acces.ToString(); Layout = "~/Views/Shared/_Layout.cshtml"; College college = Model.Obj; }

Type de restauration pour un collège

@using (Html.BeginForm()) { @Html.AntiForgeryToken()

Type de restauration


@Html.ValidationSummary(true, "", new { @class = "text-danger" }) @Html.HiddenFor(model => college.Id) @Html.HiddenFor(model => college.Annee_Id) @Html.HiddenFor(model => college.CodeRne) @Html.HiddenFor(model => college.Libelle) @Html.HiddenFor(model => college.TokenId) @Html.HiddenFor(model => college.Adresse) @Html.HiddenFor(model => college.Code_Postal) @Html.HiddenFor(model => college.TypeCollege_Id) @Html.HiddenFor(model => college.Commune_Insee) @Html.HiddenFor(model => college.Commune) @Html.HiddenFor(model => college.Canton) @Html.HiddenFor(model => college.Territoire_Id) @Html.HiddenFor(model => college.TAD) @Html.HiddenFor(model => college.CDC) @Html.HiddenFor(model => college.Tel) @Html.HiddenFor(model => college.Fax) @Html.HiddenFor(model => college.Email) @Html.HiddenFor(model => college.PrincipalSid) @Html.HiddenFor(model => college.AdjointSid) @Html.HiddenFor(model => college.Gestionnaire1Sid) @Html.HiddenFor(model => college.Gestionnaire2Sid)
@Html.LabelFor(model => college.CodeRne, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.DisplayFor(model => college.CodeRne, new { htmlAttributes = new { @class = "form-control" } })
@Html.LabelFor(model => college.Libelle, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.DisplayFor(model => college.Libelle, new { htmlAttributes = new { @class = "form-control" } })
@Html.LabelFor(model => college.RestaurationType_Id, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.DropDownListFor(model => college.RestaurationType_Id, Model.Sel_TypesRestauration, htmlAttributes: new { @class = "form-control" }) @Html.ValidationMessageFor(model => college.RestaurationType_Id, "", new { @class = "text-danger" })
} @section Scripts { }