hello, given a string 's' with a template source, i am trying to render this template in my view:
from django.template import Template ... t = Template(s) t.render(context) ... where 'context' is some context. the above code works fine as long as 's' has no custom tags in it. but it fails with TemplateSyntaxError saying "invalid block tag" if i use a custom tag. the tag is rendered correctly if used in file-based templates. what am i missing? thanks konstantin --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---