X-Git-Url: http://git.ithinksw.org/philo.git/blobdiff_plain/2b9255e08e751c9653078a087b59f4d5169c34fe..1b86deeeaf9c98d994e95b983c44a82e004275b0:/philo/templatetags/containers.py diff --git a/philo/templatetags/containers.py b/philo/templatetags/containers.py index 3370c78..2c55034 100644 --- a/philo/templatetags/containers.py +++ b/philo/templatetags/containers.py @@ -76,16 +76,6 @@ class ContainerNode(template.Node): content = '' else: content = contentlet.content - - if '{%' in content or '{{' in content: - try: - content = template.Template(contentlet.content, name=contentlet.name).render(context) - except template.TemplateSyntaxError, e: - if settings.DEBUG: - content = ('[Error parsing contentlet \'%s\': %s]' % (self.name, e)) - else: - content = settings.TEMPLATE_STRING_IF_INVALID - content = mark_safe(content) return content