Mercurial > public > sg101
comparison gpp/downloads/views.py @ 242:7e8d2dda99e3
For #93: fix url scheme for weblinks.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Wed, 15 Sep 2010 03:24:01 +0000 |
parents | 27bee3ac85e6 |
children | 7ddd60164245 |
comparison
equal
deleted
inserted
replaced
241:27bee3ac85e6 | 242:7e8d2dda99e3 |
---|---|
24 from downloads.models import VoteRecord | 24 from downloads.models import VoteRecord |
25 from downloads.forms import AddDownloadForm | 25 from downloads.forms import AddDownloadForm |
26 | 26 |
27 ####################################################################### | 27 ####################################################################### |
28 | 28 |
29 DLS_PER_PAGE = 1 | 29 DLS_PER_PAGE = 10 |
30 | 30 |
31 def create_paginator(dls): | 31 def create_paginator(dls): |
32 return DiggPaginator(dls, DLS_PER_PAGE, body=5, tail=3, margin=3, padding=2) | 32 return DiggPaginator(dls, DLS_PER_PAGE, body=5, tail=3, margin=3, padding=2) |
33 | 33 |
34 ####################################################################### | 34 ####################################################################### |