simple.direct_to_template and query objects
Hi people, I want to define a generic view using
simple.direct_to_template, something like this:
(r'^detail_event/(?P<object_id>\d+)/$', simple.direct_to_template,
{
'extra_context': {'event': Event.objects.get(id=object_id),}
}),
Of course this doesn't work, django tell me that 'object_id' is not
defined.
How can I access at the object_id value?
--
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+unsubscribe@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/django-users?hl=en.
0 Comments:
Post a Comment
Subscribe to Post Comments [Atom]
<< Home