Re: How to pass the data submitted in 1 page to the next page?

2010-05-21 Thread ravi krishna
Thanks for ur reply Ankit. But its not working. Can u please tell me the steps in details On Fri, May 21, 2010 at 3:08 PM, ankit rai wrote: > > > On Fri, May 21, 2010 at 3:06 PM, ankit rai wrote: > >> Make two separate views for handling the page.Enter the data in page one >> and pass it as a qu

Re: How to pass the data submitted in 1 page to the next page?

2010-05-21 Thread ankit rai
On Fri, May 21, 2010 at 3:06 PM, ankit rai wrote: > Make two separate views for handling the page.Enter the data in page one > and pass it as a query param or post method. In your *url.py* mapped the > second page and pass the param in post or get method > > > # url.py > > (r'^admin/xyz/(.*)$','

Re: How to pass the data submitted in 1 page to the next page?

2010-05-21 Thread ankit rai
Make two separate views for handling the page.Enter the data in page one and pass it as a query param or post method. In your *url.py* mapped the second page and pass the param in post or get method # url.py (r'^admin/xyz/(?P[a-zA-Z0-9-]+)$','xyz.views.myView'), view.py def myView(request,path

How to pass the data submitted in 1 page to the next page?

2010-05-21 Thread ravi krishna
Hi, I have 2 pages. My first page has a form( simple html form) with 3 fields.I want to display the data entered in first page ,to second page. I am a beginner with Django framework, Somebody please help me to solve this. I will post my 'VIEW' n 'html file for the first page ' here. VIEW: def inde