@using Resources @using Weee.Models.ExtensionMethods @model Weee.Areas.Admin.ViewModels.ParameterCreateViewModel @{ ViewBag.Title = Resource.StaticLabelNonYearlyParameterMaintain; Layout = "~/Areas/admin/Views/Shared/_AdminLayout.cshtml"; }

@Resource.StaticLabelGlobal_New - @Model.Category.DisplayString()


@using (Html.BeginForm()) { @Html.AntiForgeryToken() @Html.HiddenFor(model => model.Category)
@Html.ValidationSummary(true)
@Html.LabelFor(model => model.ToBeCreated.DisplayNameTW, new { @class = "control-label docs-control-label col-xs-3" })
@Html.EditorFor(model => model.ToBeCreated.DisplayNameTW, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.ToBeCreated.DisplayNameTW, null, new { @class = "text-danger" })
@Html.LabelFor(model => model.ToBeCreated.DisplayNameCN, new { @class = "control-label docs-control-label col-xs-3" })
@Html.EditorFor(model => model.ToBeCreated.DisplayNameCN, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.ToBeCreated.DisplayNameCN, null, new { @class = "text-danger" })
@Html.LabelFor(model => model.ToBeCreated.DisplayNameEN, new { @class = "control-label docs-control-label col-xs-3" })
@Html.EditorFor(model => model.ToBeCreated.DisplayNameEN, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.ToBeCreated.DisplayNameEN, null, new { @class = "text-danger" })
@Html.LabelFor(model => model.ToBeCreated.activityDataType, new { @class = "control-label docs-control-label col-xs-3" }) @**@
@Html.DropDownListFor(model => model.ToBeCreated.activityDataType , (IEnumerable)ViewBag.activityItems, new { @class = "form-control" }) @**@
@Html.LabelFor(model => model.ToBeCreated.emitParaType, new { @class = "control-label docs-control-label col-xs-3" }) @**@
@Html.DropDownListFor(model => model.ToBeCreated.emitParaType , (IEnumerable)ViewBag.emitParaItems, new { @class = "form-control" }) @**@
@Html.LabelFor(model => model.FirstVersion.Value, new { @class = "control-label docs-control-label col-xs-3" })
@Html.EditorFor(model => model.FirstVersion.Value, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.FirstVersion.Value, null, new { @class = "text-danger" })
@Html.LabelFor(model => model.FirstVersion.CO2Value, new { @class = "control-label docs-control-label col-xs-3" })
@Html.EditorFor(model => model.FirstVersion.CO2Value, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.FirstVersion.CO2Value, null, new { @class = "text-danger" })
@Html.LabelFor(model => model.FirstVersion.CH4Value, new { @class = "control-label docs-control-label col-xs-3" })
@Html.EditorFor(model => model.FirstVersion.CH4Value, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.FirstVersion.CH4Value, null, new { @class = "text-danger" })
@Html.LabelFor(model => model.FirstVersion.N2OValue, new { @class = "control-label docs-control-label col-xs-3" })
@Html.EditorFor(model => model.FirstVersion.N2OValue, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.FirstVersion.N2OValue, null, new { @class = "text-danger" })
@Html.LabelFor(model => model.FirstVersion.HFCsValue, new { @class = "control-label docs-control-label col-xs-3" })
@Html.EditorFor(model => model.FirstVersion.HFCsValue, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.FirstVersion.HFCsValue, null, new { @class = "text-danger" })
@Html.LabelFor(model => model.FirstVersion.PFCsValue, new { @class = "control-label docs-control-label col-xs-3" })
@Html.EditorFor(model => model.FirstVersion.PFCsValue, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.FirstVersion.PFCsValue, null, new { @class = "text-danger" })
@Html.LabelFor(model => model.FirstVersion.SF6Value, new { @class = "control-label docs-control-label col-xs-3" })
@Html.EditorFor(model => model.FirstVersion.SF6Value, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.FirstVersion.SF6Value, null, new { @class = "text-danger" })
@Html.LabelFor(model => model.FirstVersion.NF3Value, new { @class = "control-label docs-control-label col-xs-3" })
@Html.EditorFor(model => model.FirstVersion.NF3Value, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.FirstVersion.NF3Value, null, new { @class = "text-danger" })
@Html.LabelFor(model => model.ToBeCreated.paraSource, new { @class = "control-label docs-control-label col-xs-3" })
@Html.EditorFor(model => model.ToBeCreated.paraSource, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.ToBeCreated.paraSource, null, new { @class = "text-danger" })
@Html.LabelFor(model => model.FirstVersion.Description, new { @class = "control-label docs-control-label col-xs-3" })
@Html.TextAreaFor(model => model.FirstVersion.Description, new { @class = "form-control", rows = "5" }) @Html.ValidationMessageFor(model => model.FirstVersion.Description, null, new { @class = "text-danger" })
@*
@Html.LabelFor(model => model.ToBeCreated.CO2, new { @class = "control-label docs-control-label col-xs-3" })
@Html.EditorFor(model => model.ToBeCreated.CO2, new { htmlAttributes = new { @class = "form-control" } }) @Html.ValidationMessageFor(model => model.ToBeCreated.CO2, null, new { @class = "text-danger" })
*@
@Html.ActionLink(Resource.StaticLabelGlobal_Cancel, "Index", new { c = Model.Category }, new { @class = "btn btn-default" })
}