rebranding
[django-pagination.git] / 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 (file)
index cdb44d9..0000000
+++ /dev/null
@@ -1,21 +0,0 @@
-{% extends "django_testproject/base.html" %}
-{% load pagination_tags %}
-
-
-{% block content %}
-<p>This page demonstrates how autopaginate behaves under certain conditions</p>
-<p>Below you can see two lists.</p>
-<p>First list has {{ first_item_list|length }} items.</p>
-{% autopaginate first_item_list 5 %}
-{% for item in first_item_list %}
-<p>{{item}}</p>
-{% endfor %}
-{% paginate using "pagination/custom_pagination.html" %}
-
-<p>Second list has {{ second_item_list|length}} items.</p>
-{% autopaginate second_item_list 5 %}
-{% paginate %}
-{% for item in second_item_list %}
-<p>{{item}}</p>
-{% endfor %}
-{% endblock %}