We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d00a40a commit 207bf09Copy full SHA for 207bf09
docs/tutorial.rst
@@ -295,6 +295,14 @@ will likely differ)::
295
{% empty %}
296
<p>No results found.</p>
297
{% endfor %}
298
+
299
+ {% if page.has_previous or page.has_next %}
300
+ <div>
301
+ {% if page.has_previous %}<a href="?q={{ query }}&page={{ page.previous_page_number }}">{% endif %}« Previous{% if page.has_previous %}</a>{% endif %}
302
+ |
303
+ {% if page.has_next %}<a href="?q={{ query }}&page={{ page.next_page_number }}">{% endif %}Next »{% if page.has_next %}</a>{% endif %}
304
+ </div>
305
+ {% endif %}
306
{% else %}
307
{# Show some example queries to run, maybe query syntax, something else? #}
308
{% endif %}
0 commit comments