@using Microsoft.AspNetCore.Builder @using Microsoft.AspNetCore.Mvc.Localization @using Microsoft.AspNetCore.Mvc.TagHelpers @using Microsoft.Extensions.Localization @using Microsoft.Extensions.Options @using gehGassi.Web.Helper @using gehGassi.Web.Models @model gehGassi.Web.Models.ProductCrudVm @inject IViewLocalizer Localizer @{ ViewData["Title"] = Localizer["Button_Create"]; string folderToUse = "temp"; }
@Localizer["Product_Create_Desc"]
@Localizer["Common_Tab_Details"]
@Localizer["Common_Tab_Description"]
@Localizer["Common_Tab_Image"]
@Localizer["Common_Tab_Settings"]
@Localizer["Banner_Price_Info"]
@*
*@
@foreach (var item in Model.TextVms) {
@item.Language
}
@Html.EditorFor(m => m.TextVms, new{FolderToUse = folderToUse})
@if (!string.IsNullOrWhiteSpace(Model.Image)) { } else { }

@Localizer["Product_Image_Desc"]

@Localizer["Common_Group_Dimensions"]
@Localizer["Common_Group_Shipment"]
@Localizer["Common_Group_Stock"]
@Localizer["Common_Group_OrderQuantity"]
@Html.Hidden("jsGetCategoryUrl", Url.Action("LookupParents", "Product", new{excludeId = -1, includeNone = true})) @Html.Hidden("jsLookupAdvertisementCategoryUrl", Url.Action("LookupCategories", "Advertisement", new{includeNone = true})) @Html.Hidden("jsLookupTaxRatesUrl", Url.Action("Lookup", "TaxRate", new{includeNone = true})) @Html.Hidden("jsLookupBranchesListingsUrl", Url.Action("LookupListings", "Branch")) @Html.Hidden("jsUploadUrl", Url.Action("UploadTempFile", "Common")) @Html.Hidden("jsRemoveUrl", Url.Action("RemoveTempFile", "Common"))