Try your search with a different keyword or use * as a wildcard.
@using Nop.Core.Domain.Catalog
@using Nop.Services.Helpers
@using Nop.Services.Html
@model List
@inject IDateTimeHelper dateTimeHelper
@inject IHtmlFormatter htmlFormatter
@if (Model.Count > 0)
{
@T("Vendors.ExistingReviews")
@foreach (var review in Model)
{
var ratingPercent = review.Rating * 20;
@review.Title
@if (!string.IsNullOrEmpty(review.CustomerAvatarUrl))
{
}
@Html.Raw(htmlFormatter.FormatText(review.ReviewText, false, true, false, false, false, false))
@if (review.AllowViewingProfiles)
{
@(review.CustomerName)
}
else
{
@review.CustomerName
}
|
@((await dateTimeHelper.ConvertToUserTimeAsync(review.CreatedOnUtc)).ToString("g"))
@await Html.PartialAsync("_ProductReviewHelpfulness", review.Helpfulness)
@if (!string.IsNullOrEmpty(review.ReplyText))
{
}
}
}