thanks
_____ From: [email protected] [mailto:[email protected]] On Behalf Of Karen Tracey Sent: Sunday, November 01, 2009 7:59 AM To: [email protected] Subject: Re: Paginate huge file On Sun, Nov 1, 2009 at 7:14 AM, Angel Talavera <[email protected]> wrote: How can I create a view to paginate thru a huge table? You could use a generic view (http://docs.djangoproject.com/en/dev/ref/generic-views/) -- these allow you to specify how many items per page. If you want to write your own view, use a Paginator (http://docs.djangoproject.com/en/dev/topics/pagination/) directly. Karen --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---

