On Oct 21, 4:12 am, "yuanyun.ken" <[EMAIL PROTECTED]> wrote:
> Hi,all great Django users and developers, I have a little problem.
> In URL dispatcher, is there a way to pass values of Named Groups
> directly to template, don't want to write a view function just for
> this.
> for example, I have the following urls:
>     (r'^machine_logs/$', direct_to_template, {'template':
> 'machine_logs.html'}),
>     (r'^machine_logs/(?P<unit_name>.*)/$', direct_to_template,
> {'template': 'machine_logs.html', 'unit_name':unit_name}),
>
> How can I pass the value of captured unit_name to machine_logs.html.
> Thanks for any help in advance.


The documentation for direct_to_template explains how to do this:
"Renders a given template, passing it a {{ params }} template
variable, which is a dictionary of the parameters captured in the
URL."
http://docs.djangoproject.com/en/dev/ref/generic-views/#ref-generic-views

Your URL pattern above won't work of course because unit_name is not
defined as a variable at that point.
--
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to