Merge pull request #3141 from sbwalker/dev

change "price" to "from" to reflect multiple options
This commit is contained in:
Shaun Walker
2023-08-12 10:31:56 -04:00
committed by GitHub
3 changed files with 8 additions and 2 deletions

View File

@ -88,7 +88,7 @@
@(context.Description.Length > 400 ? (context.Description.Substring(0, 400) + "...") : context.Description)<br />
@if (context.Price != null && !string.IsNullOrEmpty(context.PaymentUrl))
{
<small>@SharedLocalizer["Search.Price"]:</small> <strong>@context.Price.Value.ToString("$#,##0.00")</strong>
<small>@SharedLocalizer["From"]:</small> <strong>@context.Price.Value.ToString("$#,##0.00")</strong>
@((MarkupString)(context.TrialPeriod > 0 ? " <strong>(" + context.TrialPeriod + " Day Trial)</strong>" : ""))
}
<br />