summaryrefslogtreecommitdiff
path: root/sublab_project/news/templates
diff options
context:
space:
mode:
authorChristian Franke <nobody@nowhere.ws>2011-12-30 02:19:39 +0100
committerChristian Franke <nobody@nowhere.ws>2011-12-30 02:19:59 +0100
commit5b2c404d2955599bb50635b05d9191cb4bd6e34d (patch)
treea4bca5293c8036e3e3c0efc06c7af7e1f98f86b4 /sublab_project/news/templates
parentcc2bb825e50a4de96dbdf191ccfbda9d6397feb8 (diff)
Improve ListView for news
Diffstat (limited to 'sublab_project/news/templates')
-rw-r--r--sublab_project/news/templates/news/news_list.html8
1 files changed, 8 insertions, 0 deletions
diff --git a/sublab_project/news/templates/news/news_list.html b/sublab_project/news/templates/news/news_list.html
index 6330ffb..ea46320 100644
--- a/sublab_project/news/templates/news/news_list.html
+++ b/sublab_project/news/templates/news/news_list.html
@@ -8,4 +8,12 @@
</h3>
<p>{{ post.content_html|safe }}</p>
{% endfor %}
+ {% if is_paginated %}
+ <p>
+ {% for page in paginator.page_range %}
+ <a href="?page={{ page }}">{{ page }}</a>
+ {% endfor %}
+ </p>
+ {% endif %}
+
{% endblock content %}