Re: paginator.has_next_page error?

2007-04-25 Thread Moses Ting
I ended up figuring out what the problem was. I was retrieving the value from key page_num from GET: pageNum = request.GET.get("page_num", 0) That's problematic because I remember it being mentioned in the docs that a get returns a string. Therefore, I need to do the following instead: pageNu

Re: paginator.has_next_page error?

2007-04-24 Thread James Bennett
On 4/24/07, Moses Ting <[EMAIL PROTECTED]> wrote: > Has anyone run into errors with the paginator.has_next_page function? > It seems to be returning false even though I am certain that there's a > next page. Could you post some more details about the situation you're encountering? Without knowing

paginator.has_next_page error?

2007-04-24 Thread Moses Ting
Has anyone run into errors with the paginator.has_next_page function? It seems to be returning false even though I am certain that there's a next page. Thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Djang