We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent1f90000 commitf58149cCopy full SHA for f58149c
templates/search/search.html
@@ -17,7 +17,7 @@ <h3>Results</h3>
17
{% include result.include_template %}
18
</li>
19
{% empty %}
20
-<p>No results found.</p>
+<li>No results found.</li>
21
{% endfor %}
22
</ul>
23
{% if page.has_previous or page.has_next %}
@@ -27,8 +27,13 @@ <h3>Results</h3>
27
{% if page.has_next %}<ahref="?q={{ query }}&page={{ page.next_page_number }}">{% endif %}Next »{% if page.has_next %}</a>{% endif %}
28
</div>
29
{% endif %}
30
+
31
+<h3>Python language documentation</h3>
32
+<p>If you didn't find what you need, try your search in the
33
+<ahref="https://docs.python.org/3/search.html?q={{ request.GET.q | urlencode }}">Python language documentation</a>.
34
+</p>
35
{% else %}
36
{# Show some example queries to run, maybe query syntax, something else? #}
37
38
</form>
-{% endblock %}
39
+{% endblock %}