@model LiveScreenViewModel @using Nop.Core.Infrastructure @using Nop.Web.Framework @using Nop.Plugin.Misc.AuctionPlugin.Domains.Dtos; @using System.Web @{ var defaultGridPageSize = EngineContext.Current.Resolve().DefaultGridPageSize; var gridPageSizes = EngineContext.Current.Resolve().GridPageSizes; Layout = "Auction/LiveScreenRoot.cshtml"; //page title } @{ if (Model.IsAnyItemActive) {
Auction Item Image
Bid History
# Bid Amount Account

@Model.ActiveProductDetails.Name

@{ //TODO: itt nem gond a ProductManufacturers.FirstOrDefault-t? - J. var productManufacture = Model.ActiveProductDetails.ProductManufacturers?.FirstOrDefault(); if (productManufacture != null) { if (!string.IsNullOrEmpty(productManufacture.Name)) {

Created by: @productManufacture.Name

} } }

Item no.: @Model.CurrentProductToAuction.SortIndex

  • @await Html.PartialAsync("Product/_ProductSpecifications.cshtml", Model.ActiveProductDetails.ProductSpecificationModel)
    Base price @($"{Model.BasePrice:c}")
    Actual licit step @($"{Model.LicitStep:c}")
  • Description:

    @Html.Raw(HttpUtility.HtmlDecode(Model.ActiveProductDetails.FullDescription))

@await Component.InvokeAsync(typeof(WidgetViewComponent), new { widgetZone = PublicWidgetZones.ProductBoxAddinfoAfter, additionalData = Model.ActiveProductDetails })
} else {

@Model.AuctionDto.AuctionName

} }