@Html.ValidationSummary(true, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.CODE_ACTE, "ACTE", htmlAttributes: new { @class = "control-label " })
@Html.DropDownList("CODE_ACTE", null, htmlAttributes: new { @class = "form-control select2", @id = "kt_select2_1" })
@Html.ValidationMessageFor(model => model.CODE_ACTE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.IDTAUX, "TAUX", htmlAttributes: new { @class = "control-label " })
@Html.DropDownList("IDTAUX", null, htmlAttributes: new { @class = "form-control" })
@Html.ValidationMessageFor(model => model.IDTAUX, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.PLAFOND, htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.PLAFOND, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.PLAFOND, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.DATEDEBUT,"DATE DE DEBUT", htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.DATEDEBUT, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.DATEDEBUT, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.DATEFIN,"DATE DE FIN", htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.DATEFIN, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.DATEFIN, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.INFORMATION, htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.INFORMATION, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.INFORMATION, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.DUREE, htmlAttributes: new { @class = "control-label " })
@Html.EditorFor(model => model.DUREE, new { htmlAttributes = new { @class = "form-control" } })
@Html.ValidationMessageFor(model => model.DUREE, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.IDTYPEDUREE, "TYPE DE DUREE", htmlAttributes: new { @class = "control-label " })
@Html.DropDownList("IDTYPEDUREE", null, htmlAttributes: new { @class = "form-control select2", @id = "kt_select2_2" })
@Html.ValidationMessageFor(model => model.IDTYPEDUREE, "", new { @class = "text-danger" })