Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

CustomerQuote.cshtml

@using Nop.Core.Domain.Catalog
@using Nop.Core.Domain.Media

@model Nop.Plugin.Misc.RFQ.Models.Customer.QuoteModel
@inject MediaSettings mediaSettings
@inject INopUrlHelper nopUrlHelper

@{

    Layout = "_ColumnsTwo";
    var title = string.Format(T("Plugins.Misc.RFQ.QuoteNumber").Text, Model.Id);

    //title
    NopHtml.AddTitleParts(title);

    NopHtml.AddCssFileParts(@"~/Plugins/Misc.RFQ/Content/styles.css", null);

    //page class
    NopHtml.AppendPageCssClassParts("html-account-page");
    NopHtml.AppendPageCssClassParts("html-rfq-request-page");
}

@section left
{
    @await Component.InvokeAsync(typeof(CustomerNavigationViewComponent), new { selectedTabId = RfqDefaults.QuotesTabId })
}