From 9abb83fdbc05294f186daeefff8c85cfda06b7d2 Mon Sep 17 00:00:00 2001 From: James Taylor Date: Fri, 27 Sep 2019 19:27:19 -0700 Subject: Extraction: Fix did_you_mean and showing_results_for --- youtube/templates/search.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'youtube/templates/search.html') diff --git a/youtube/templates/search.html b/youtube/templates/search.html index aef914a..8b803e7 100644 --- a/youtube/templates/search.html +++ b/youtube/templates/search.html @@ -29,10 +29,10 @@
Approximately {{ '{:,}'.format(estimated_results) }} results ({{ '{:,}'.format(estimated_pages) }} pages)
{% if corrections['type'] == 'showing_results_for' %} -
Showing results for {{ corrections['corrected_query']|safe }}
-
Search instead for {{ corrections['original_query'] }}
+
Showing results for {{ common_elements.text_runs(corrections['corrected_query_text']) }}
+
Search instead for {{ corrections['original_query_text'] }}
{% elif corrections['type'] == 'did_you_mean' %} -
Did you mean {{ corrections['corrected_query']|safe }}
+
Did you mean {{ common_elements.text_runs(corrections['corrected_query_text']) }}
{% endif %}
-- cgit v1.2.3