@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

@if(Model.ActiveProductDetails.ProductManufacturers != null) { if(Model.ActiveProductDetails.ProductManufacturers.FirstOrDefault() != null) { if(!string.IsNullOrEmpty(Model.ActiveProductDetails.ProductManufacturers.FirstOrDefault().Name)) {

Created by: @Model.ActiveProductDetails.ProductManufacturers.FirstOrDefault().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))

} else {

@Model.AuctionDto.AuctionName

} }