Robin Elvin
Robin Elvin

Reputation: 1255

Django custom filters not working in included templates

Not sure if I've done something wrong but if I try to use a custom filter in an included template fragment I'm getting "invalid filter"

If I try the filter on the main template it works fine.

Is this a known limitation/bug?

Upvotes: 9

Views: 3429

Answers (1)

Brant
Brant

Reputation: 6021

You'll need to {% load %} in the included template as well.

So, if base.html is calling {% include "sub.html" %}, then you'll need to have the {% load custom_filters %} tag at the top of sub.html as well.

Upvotes: 17

Related Questions