Merge pull request #35 from gitter-badger/gitter-badge
[django-pagination.git] / linaro_django_pagination / test_project / example / templates / example / list.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 a list of {{ item_list|length }} items.</p>
8 {% autopaginate item_list %}
9 {% for item in item_list %}
10 <p>Item {{item}}</p>
11 {% endfor %}
12 {% paginate %}
13 {% endblock %}