On zo, 2009-11-15 at 10:08 -0800, apramanik wrote:
> Sure in most cases, but is there a way to fake setting the context of
> the included template? If I'm iterating over a set of comments and
> include "comment.html", can I specify which comment to render?

{% for comment in comments %}
   {% include "comment.html" %}
{% endfor %}

In comment.html, the variable named comment refers to the comment
currently being processed :)

-- 
Dennis K.

The universe tends towards maximum irony. Don't push it.

--

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=.


Reply via email to