rebranding
[django-pagination.git] / linaro_django_pagination / test_project / example / templates / example / list.html
diff --git a/linaro_django_pagination/test_project/example/templates/example/list.html b/linaro_django_pagination/test_project/example/templates/example/list.html
deleted file mode 100644 (file)
index d81a42c..0000000
+++ /dev/null
@@ -1,13 +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 a list of {{ item_list|length }} items.</p>
-{% autopaginate item_list %}
-{% for item in item_list %}
-<p>Item {{item}}</p>
-{% endfor %}
-{% paginate %}
-{% endblock %}