1
2
3
4
def segment_pages(page):
    page.paginator.left = []
    page.paginator.right = []
...

Python Django / Python / Paginatio...

by bramston, June 11, 2008 04:58, 1 refactoring, tagged with django, python, pagination

Really quickly ported some ...

Eb74aac8da41a993ae9dd91a5b13b78a Talk
1
2
3
4
class SearchLet(Form):
    district = Field(widget=SelectMultiple(choices=DISTRICTS, required=False)
...

Python Django models search

by lbolognini, November 10, 2007 16:30, 1 refactoring, tagged with python, django, search, orm

I'm using the following cod...

D2ff155cd04fa175620d2f3495b11b08 Talk