[2.0.x] Fixed #28745 -- Added first and last page links to paginator docs example.

Backport of dcc0427c58 from master
This commit is contained in:
Sam Morrow 2017-10-25 12:05:31 +01:00 committed by Tim Graham
parent e80a014fce
commit c9ce52820a
1 changed files with 2 additions and 0 deletions

View File

@ -108,6 +108,7 @@ pages along with any interesting information from the objects themselves::
<div class="pagination">
<span class="step-links">
{% if contacts.has_previous %}
<a href="?page=1">&laquo; first</a>
<a href="?page={{ contacts.previous_page_number }}">previous</a>
{% endif %}
@ -117,6 +118,7 @@ pages along with any interesting information from the objects themselves::
{% if contacts.has_next %}
<a href="?page={{ contacts.next_page_number }}">next</a>
<a href="?page={{ contacts.paginator.num_pages }}">last &raquo;</a>
{% endif %}
</span>
</div>