@using IwbZero.ToolCommon.StringModel @model ContractService.Views.Shared.Modals.Input @{ string oBefore = "", oAfter = "", iBefore = "", iAfter = ""; string help = Model.Help.Empty() ? "" : "" + Model.Help + ""; if (!string.IsNullOrEmpty(Model.DivOutBefore)) { oBefore = Model.DivOutBefore; } if (!string.IsNullOrEmpty(Model.DivOutAfter)) { oAfter = Model.DivOutAfter; } if (!string.IsNullOrEmpty(Model.DivInterBefore)) { iBefore = Model.DivInterBefore; } if (!string.IsNullOrEmpty(Model.DivInterAfter)) { iAfter = Model.DivInterAfter; } } @Html.Raw(oBefore)
@Html.Raw(Model.Label) @if (Model.Special.NotEmpty()) { @Html.Raw(Model.Special) }
@Html.Raw(iBefore) @Html.Partial("Modals/_InputView", Model) @Html.Raw(help) @Html.Raw(iAfter)
@Html.Raw(oAfter)