@model HistorySettingsModel @{ ViewBag.Title = "History Settings"; }
@if (!String.IsNullOrEmpty(Model.Message)) { @Html.Message(Model.Message); }

History - @Html.Raw(Model.SeedLot)

@using (Html.BeginForm()) { @Html.HiddenFor(m => m.RecordId)
@Html.LabelFor(m => m.StartDate) @Html.TextBoxFor(m => m.StartDate, new { @readonly = "readonly", @Value = Model.StartDate.ToString("yyyy-MM-dd"), @class = "HCPickerDate" })
@Html.LabelFor(m => m.EndDate) @Html.TextBoxFor(m => m.EndDate, new { @readonly = "readonly", @Value = Model.EndDate.ToString("yyyy-MM-dd"), @class = "HCPickerDate" })
@if (!Model.IsClient) { Html.RenderPartial("GeneralPartial/CheckboxPartial", Model.Columns); }
}