Re: [BangPypers] Django Jquey List View issu

2013-02-19 Thread ragsagar
Refer the following link for the usage of reverse(). You need pass the url name, not template name. https://docs.djangoproject.com/en/dev/topics/http/urls/#reverse-resolution-of-urls On Tue, Feb 19, 2013 at 1:51 PM, JAGANADH G wrote: > On Tue, Feb 19, 2013 at 12:40 PM, ragsagar wrote: > > > I

Re: [BangPypers] Django Jquey List View issu

2013-02-19 Thread JAGANADH G
On Tue, Feb 19, 2013 at 12:40 PM, ragsagar wrote: > It would have better if you have shared the code using dpase or some > pastebin, because it not that readable here. I am assuming your problem is > this. After login, the index.html page is rendering but you cannot the see > the list of items. I

Re: [BangPypers] Django Jquey List View issu

2013-02-18 Thread ragsagar
It would have better if you have shared the code using dpase or some pastebin, because it not that readable here. I am assuming your problem is this. After login, the index.html page is rendering but you cannot the see the list of items. If this is the problem do the following. 1) Get the url name

Re: [BangPypers] Django Jquey List View issu

2013-02-18 Thread JAGANADH G
On Mon, Feb 18, 2013 at 10:26 PM, anirudh bhat wrote: > Hello Jaganadh, your question is too abstract.Maybe you can show us some > code u have written if you dont mind.There maybe lot of things that can go > wrong hereone such example is that maybe there is some problem with > your Jquery co

Re: [BangPypers] Django Jquey List View issu

2013-02-18 Thread JAGANADH G
On Mon, Feb 18, 2013 at 10:26 PM, anirudh bhat wrote: > Hello Jaganadh, your question is too abstract.Maybe you can show us some > code u have written if you dont mind.There maybe lot of things that can go > wrong hereone such example is that maybe there is some problem with > your Jquery co

Re: [BangPypers] Django Jquey List View issu

2013-02-18 Thread anirudh bhat
Hello Jaganadh, your question is too abstract.Maybe you can show us some code u have written if you dont mind.There maybe lot of things that can go wrong hereone such example is that maybe there is some problem with your Jquery code.Is page redirecting done right?? what does your django error

[BangPypers] Django Jquey List View issu

2013-02-18 Thread JAGANADH G
Hi , I am working with a private Django project. In the project once the user clicks on "Go" button he has to be redirected to a page with JQury list view (Looks like a tabbed page). To get redirected to "TabbedPage.html" I am using render_to_response("TabbedPage.html",{'user':username'}. When the