Re: Creating clean URLS

2012-01-02 Thread lankesh87
Yes I am using form to send values.. and here is the view code:- -- views.py

Re: Creating clean URLS

2012-01-01 Thread Lie Ryan
On 01/02/2012 07:53 AM, lankesh87 wrote: I want my url to be free from parameters being passed. I have handled the request in "twitter_after_auth" function of view and I am redirecting user to the new url "http://localhost/create_cr/"; but instead the url shows some additional parameters that

Re: Creating clean URLS

2012-01-01 Thread Charles Cossé
I had that occur at one point last night ... can't remember the circumstance, but perhaps you are using a form? On Sun, Jan 1, 2012 at 2:24 PM, Jonas Geiregat wrote: > > > > I want my url to be free from parameters being passed. > > > > I have handled the request in "twitter_after_auth" function

Re: Creating clean URLS

2012-01-01 Thread Jonas Geiregat
> I want my url to be free from parameters being passed. > > I have handled the request in "twitter_after_auth" function of view > and > > I am redirecting user to the new url "http://localhost/create_cr/"; > > but instead the url shows some additional parameters that I have > already handled.