On Jul 17, 10:03 pm, Joel Klabo <[email protected]> wrote: > I got it to work by adding: {% load comments %}. I had put the load > comments tag in my base.html but didn't work there for some reason. > > On Jul 17, 1:00 pm, Joel Klabo <[email protected]> wrote: > > > I am trying to use the get_comment_list template tag and I keep > > getting errors. Any ideas?http://dpaste.org/nCx0/
The reason is in the documentation (http://docs.djangoproject.com/en/ dev/topics/templates/#custom-libraries-and-template-inheritance): "When you load a custom tag or filter library, the tags/filters are only made available to the *current* template - not any parent or child templates along the template-inheritance path." -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to [email protected]. 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.

