Try your search with a different keyword or use * as a wildcard.
@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 })
}
@T("Account.MyAccount") - @title