@model MALDFGASSURANCE.Models.CATEGORIE_PROFESSIONELLE @{ ViewBag.Title = "Edit"; }

Edit

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

CATEGORIE_PROFESSIONELLE


@Html.ValidationSummary(true, "", new { @class = "text-danger" }) @Html.HiddenFor(model => model.CODE_CATEGORIE_PROFESSIONELLE)
@Html.LabelFor(model => model.LIBELLE_CATEGORIE_PROFESSIONELLE, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.LIBELLE_CATEGORIE_PROFESSIONELLE, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.LIBELLE_CATEGORIE_PROFESSIONELLE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.IDTAUX, "IDTAUX", htmlAttributes: new { @class = "control-label col-md-2" })
@Html.DropDownList("IDTAUX", null, htmlAttributes: new { @class = "form-control" }) @Html.ValidationMessageFor(model => model.IDTAUX, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.IDUTILISATEUR, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.IDUTILISATEUR, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.IDUTILISATEUR, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.ETAT, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.ETAT, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.ETAT, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.DATEFIN, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.DATEFIN, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.DATEFIN, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.DATEDEBUT, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.DATEDEBUT, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.DATEDEBUT, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.DATECREATION, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.DATECREATION, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.DATECREATION, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.DATEMODIFICATION, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.DATEMODIFICATION, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.DATEMODIFICATION, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.DATESUPPRESSION, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.DATESUPPRESSION, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.DATESUPPRESSION, "", new { @class = "text-danger" })
}
@Html.ActionLink("Back to List", "Index")