Re: Send a parameter from a template to another template

2009-09-30 Thread Daniel Roseman
On Sep 30, 11:23 am, NMarcu wrote: > Hello, > >    I need to send a value from a template to another template. > In my first template I have something like this: > td>Edit > The result will be: "/edit/admin" > I need to use the value: "admin" in another template. > I have in my urls.py: > >  url(

Send a parameter from a template to another template

2009-09-30 Thread NMarcu
Hello, I need to send a value from a template to another template. In my first template I have something like this: td>Edit The result will be: "/edit/admin" I need to use the value: "admin" in another template. I have in my urls.py: url(r'^operators/edit/(?P\w+)', 'views.edit'), My views.e