What is the process for using a third party filter like easy-thumbnails with Jinja2 in Django? Do I need to somehow register the filters I need to use? Specifically, I want to use the thumbnail_url
filter that I used to use like:
<img src="{{ the_thing.image|thumbnail_url:'homepage_large' }}">
I tried to convert this to the Jijnja2 syntax like so:
{{ the_thing.image|thumbnail_url('homepage_large') }}
but get the following error:
django.template.base.TemplateSyntaxError: ("no filter named 'thumbnail_url'",)