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

Edit

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

SIMUPAYEMENT


@Html.ValidationSummary(true, "", new { @class = "text-danger" }) @Html.HiddenFor(model => model.Iconsim)
@Html.LabelFor(model => model.Reference, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.Reference, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.Reference, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.montant, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.montant, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.montant, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.periodedebut, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.periodedebut, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.periodedebut, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.periodefin, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.periodefin, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.periodefin, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.datepayement, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.datepayement, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.datepayement, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.status, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.status, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.status, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.resultat, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.resultat, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.resultat, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.commentaire, htmlAttributes: new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.commentaire, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.commentaire, "", new { @class = "text-danger" })
}
@Html.ActionLink("Back to List", "Index")