@using Resources @model Weee.Models.Paramemter.SimaproVersion @{ ViewBag.Title = Resource.StaticLabelSimaproParameter; Layout = "~/Areas/Admin/Views/Shared/_AdminLayout.cshtml"; var count = ViewBag.ParameterCount as string; }

@Resource.EditSimaproDatabase


@using (Html.BeginForm("EditSimaproVersion", "ParameterDatabase", new { SimaproVersionID = Model.ID }, FormMethod.Post)) { @Html.AntiForgeryToken()
if (!string.IsNullOrWhiteSpace(ViewBag.errorMsg)) {
@ViewBag.errorMsg
}
@Html.ValidationSummary(true) @Html.HiddenFor(model => model.ID) @Html.HiddenFor(model => model.CreatedDate) @Html.Hidden("count",count)
@Model.CreatedDate.ToString("yyyy/MM/dd HH:mm:ss")
@Html.EditorFor(model => model.Version, new { htmlAttributes = new { @class = "form-control" } })
@Html.TextAreaFor(model => model.Description, new { @class = "form-control", rows = "4" })
@count
@Html.EditorFor(model => model.paraSource, new { htmlAttributes = new { @class = "form-control" } })
@Model.IsActive
@Html.ActionLink(Resource.StaticLabelGlobal_BackToList, "Import", null, new { @class = "btn btn-default" })
}