Skip to content

Instantly share code, notes, and snippets.

@level09
Created February 23, 2016 20:03
Show Gist options
  • Save level09/61c8007f1cd5c8c84d77 to your computer and use it in GitHub Desktop.
Save level09/61c8007f1cd5c8c84d77 to your computer and use it in GitHub Desktop.
PER_PAGE = 30
def records_for_page(page=1):
return Property.objects.filter.order_by('-date').skip((page-1)*PER_PAGE).limit(PER_PAGE)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment