X-Git-Url: https://git.mdrn.pl/django-pagination.git/blobdiff_plain/bfae3c1f7faa2fb712f34de01f865eb45081ca62..abf535d21fd19b257e5d6fecfd60e470cc12de7f:/linaro_django_pagination/test_project/example/templates/example/two_lists.html diff --git a/linaro_django_pagination/test_project/example/templates/example/two_lists.html b/linaro_django_pagination/test_project/example/templates/example/two_lists.html deleted file mode 100644 index 8f16789..0000000 --- a/linaro_django_pagination/test_project/example/templates/example/two_lists.html +++ /dev/null @@ -1,21 +0,0 @@ -{% extends "django_testproject/base.html" %} -{% load pagination_tags %} - - -{% block content %} -

This page demonstrates how autopaginate behaves under certain conditions

-

Below you can see two lists.

-

First list has {{ first_item_list|length }} items.

-{% autopaginate first_item_list 5 %} -{% for item in first_item_list %} -

Item {{item}}

-{% endfor %} -{% paginate %} - -

Second list has {{ second_item_list|length}} items.

-{% autopaginate second_item_list 5 %} -{% paginate %} -{% for item in second_item_list %} -

Item {{item}}

-{% endfor %} -{% endblock %}