Re: Dealing with big changelists in admin

2012-09-12 Thread Axel Rau
Am 12.09.2012 um 16:20 schrieb Stephen Anto: > Hi, > > Pls refer this link > http://f2finterview.com/web/Django/15/ it may give you solution Any hint, how to integrate this into the admin? > > On Wed, Sep 12, 2012 at 5:31 PM, Axel Rau wrote: > >> >> A

Re: Dealing with big changelists in admin

2012-09-12 Thread Stephen Anto
Hi, Pls refer this link http://f2finterview.com/web/Django/15/ it may give you solution On Wed, Sep 12, 2012 at 5:31 PM, Axel Rau wrote: > > Am 12.09.2012 um 10:27 schrieb Stephen Anto: > > > There are lots of sources available on net for Django paginati

Re: Dealing with big changelists in admin

2012-09-12 Thread Axel Rau
Am 12.09.2012 um 14:47 schrieb Daniel Roseman: >> Am 12.09.2012 um 10:27 schrieb Stephen Anto: >> >>> There are lots of sources available on net for Django pagination. I am >>> using django pagination on my website http://www.f2finterview.com/ for >> show >>> questions and answers. >>> >>>

Re: Dealing with big changelists in admin

2012-09-12 Thread Daniel Roseman
On Wednesday, 12 September 2012 13:02:33 UTC+1, axel...@chaos1.de wrote: > > > Am 12.09.2012 um 10:27 schrieb Stephen Anto: > > > There are lots of sources available on net for Django pagination. I am > > using django pagination on my website http://www.f2finterview.com/ for > show > > question

Re: Dealing with big changelists in admin

2012-09-12 Thread Axel Rau
Am 12.09.2012 um 10:27 schrieb Stephen Anto: > There are lots of sources available on net for Django pagination. I am > using django pagination on my website http://www.f2finterview.com/ for show > questions and answers. > > each request fetches only five questions and answers (Eg. > http://f2fi

Re: Dealing with big changelists in admin

2012-09-12 Thread Stephen Anto
Hi, There are lots of sources available on net for Django pagination. I am using django pagination on my website http://www.f2finterview.com/ for show questions and answers. each request fetches only five questions and answers (Eg. http://f2finterview.com/web/Django/) On Wed, Sep 12, 2012 at 1:4

Dealing with big changelists in admin

2012-09-12 Thread Axel Rau
I have a table with lots of IP addresses. I defined some search_fields and that works well. How can I limit the amount of fetched and displayed rows (and pages)? A filter which slices the QuerySet to display only the first 100 results, would do it, but I do not know, how to create a filter, which