On Sep 30, 11:23 am, NMarcu <marcu.nico...@gmail.com> wrote:
> Hello,
>
>    I need to send a value from a template to another template.
> In my first template I have something like this:
> td><a href="edit/{{ row.username }}">Edit</a></td>
> 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<user>\w+)', 'views.edit'),
>
> My views.edit is like this:
>
> @login_required()
> @permission_required('auth.change_user', login_url='/nopermission')
> @decorators.list(User, _('Edit operator'))
> @decorators.script('jquery.js')
> @decorators.template('operators/edit.html')
> def edit(request, env, user):
>     print user  //here I got the correct values
>     pass
>
> How can I acces that value in the second template?
>
> My decorator template do a render_to_response(template name, env)
> env = a list o needed values

Passing parameters from the view to the template is an absolutely
basic part of Django usage, and you are clearly confusing yourself
with all those decorators. Get rid of them, and go back to basics, as
described in the tutorial and documentation.
--
DR.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to