Passing a complete context to a simple_tag doesn't (yet?) work, as described here: http://groups.google.com/group/django-users/browse_thread/thread/ee830466be465704/a41d89fd476becb1#a41d89fd476becb1
I finally solved my problem by defining my own tag as follows: =================== from django.template.loader import render_to_string from django import template from django.template import Variable register = template.Library() class IncludeTemplateNode(template.Node): tagDir = 'some/dir/' def __init__(self, template): self.templateVar = Variable(template) def render(self, context): try: actualTemplate = self.templateVar.resolve(context) return render_to_string(self.tagDir + actualTemplate, context_instance=context) except: return '' @register.tag def includeTemplate(parser, token): bits = token.split_contents() return IncludeTemplateNode(bits[1]) ================================== In my templates I can now simply use: ================================== {% includeTemplate "title.html" %} ================================== with 'title.html' being a (sub) template containing: ================================== {% block title %} {{ event.title }} {% endblock %} ================================== Thanks for all the help I received here! 2B --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---