Re: Template tag render method never called

2007-06-27 Thread Kevin Tonon
Thanks. On Jun 27, 1:31 pm, "Jeremy Dunck" <[EMAIL PROTECTED]> wrote: > On 6/27/07, Kevin Tonon <[EMAIL PROTECTED]> wrote: > > > I'm using Django 0.91 > > Hi, Kevin. Please ask this question on django-users. The > django-developers list is f

Template tag render method never called

2007-06-27 Thread Kevin Tonon
Hi, I'm using Django 0.91 More or less, this is what I'm doing: from django.core.template import Library, Node register = Library() class MyNode(Node): def __init__(self, foo): self.foo = foo print 'foo' * 100 def render(self, context): print 'bar' * 100