You could use:

1. a regular tag or
2. an inclusion tag  with takes_context=True
(See:
http://www.djangoproject.com/documentation/templates_python/#inclusion-tags)

In both cases, your render or tag function will get called with a
context object from which you can obtain the request instance like so:
request = context['request'] (assuming that you have done the necessary
setup in your project to use a RequestContext instead of the default
Context)


--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to