diff -r 52a42831d9d6 -r 9b39d93b677f app/soc/views/site/sponsor/list.py --- 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',