cdb44d93524e0c709032b472e5fed52ed16b3e4a
[django-pagination.git] / linaro_django_pagination / test_project / example / templates / example / two_lists.html
1 {% extends "django_testproject/base.html" %}
2 {% load pagination_tags %}
3
4
5 {% block content %}
6 <p>This page demonstrates how autopaginate behaves under certain conditions</p>
7 <p>Below you can see two lists.</p>
8 <p>First list has {{ first_item_list|length }} items.</p>
9 {% autopaginate first_item_list 5 %}
10 {% for item in first_item_list %}
11 <p>{{item}}</p>
12 {% endfor %}
13 {% paginate using "pagination/custom_pagination.html" %}
14
15 <p>Second list has {{ second_item_list|length}} items.</p>
16 {% autopaginate second_item_list 5 %}
17 {% paginate %}
18 {% for item in second_item_list %}
19 <p>{{item}}</p>
20 {% endfor %}
21 {% endblock %}