@model LiveScreenViewModel @using Nop.Core.Infrastructure @using Nop.Web.Framework @using Nop.Plugin.Misc.AuctionPlugin.Domains.Dtos; @{ 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

Created by: @Model.ActiveProductDetails.ProductManufacturers.FirstOrDefault().Name

Item no.: @Model.CurrentProductToAuction.SortIndex

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

    @Html.Raw(Model.ActiveProductDetails.FullDescription)

LOGO
} else {

@Model.AuctionDto.AuctionName

} }