app/soc/templates/soc/list/list_pagination.html
changeset 185 2f3bd84bb106
child 187 2c0a497b2b2a
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/app/soc/templates/soc/list/list_pagination.html	Mon Sep 22 14:08:37 2008 +0000
@@ -0,0 +1,11 @@
+<div class="pagination">
+  {% if newest %}
+    <a class="novisit" href="{{newest}}">&laquo; First</a>
+  {% endif %}
+  {% if prev %}
+    <a class="novisit" href="{{prev}}">&lsaquo; Previous</a>
+  {% endif %}
+  <b>{{ first }}{% if last %} - {{ last }}{% endif %}</b>
+  {% if next %}<a class="novisit" href="{{next}}">Next &rsaquo;</a>
+  {% else %}<span style="color:gray">Next &rsaquo;</span>{% endif %}
+</div>
\ No newline at end of file