@using Resources @model Weee.Models.LCA @{ ViewBag.Title = Resource.StaticLabelLCAList; Layout = "~/Areas/admin/Views/Shared/_AdminLayout.cshtml"; }

Create

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

LCA


@Html.ValidationSummary(true)
@Html.LabelFor(model => model.StartDate, new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.StartDate) @Html.ValidationMessageFor(model => model.StartDate, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.EndDate, new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.EndDate) @Html.ValidationMessageFor(model => model.EndDate, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.DeadLine, new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.DeadLine) @Html.ValidationMessageFor(model => model.DeadLine, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.VerifierCompanyID, "VerifierCompanyID", new { @class = "control-label col-md-2" })
@Html.DropDownList("VerifierCompanyID", String.Empty) @Html.ValidationMessageFor(model => model.VerifierCompanyID, "", new { @class = "text-danger" })
@Html.LabelFor(model => model.Status, new { @class = "control-label col-md-2" })
@Html.EditorFor(model => model.Status) @Html.ValidationMessageFor(model => model.Status, "", new { @class = "text-danger" })
}
@Html.ActionLink("Back to List", "Index")