app/soc/views/site/sponsor/list.py
changeset 263 9b39d93b677f
parent 259 74eb6b01c82c
child 265 3c2994f3b85f
--- a/app/soc/views/site/sponsor/list.py	Thu Oct 02 20:22:15 2008 +0000
+++ b/app/soc/views/site/sponsor/list.py	Fri Oct 03 01:32:34 2008 +0000
@@ -46,7 +46,12 @@
 
   offset, limit = list_helpers.getListParemeters(offset, limit)
   
-  sponsors = sponsor.getSponsorsForOffsetAndLimit(offset, limit)
+  # Fetch one more to see if there should be a 'next' link
+  sponsors = sponsor.getSponsorsForLimitAndOffset(limit + 1, offset=offset)
+
+  # TODO(tlarsen): uncomment when pagination select control is working.
+  # form = list_helpers.makeSelectNumItemsForm(request, limit)
+  # context['form'] = form
   
   list_templates = {'list_main': 'soc/list/list_main.html',
                     'list_pagination': 'soc/list/list_pagination.html',