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-us...@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