[Answer]-What's wrong with my template filter?

1👍

To use the customer template tags or filters, you need to load them in the template.

{% load customer_templatetags %}

NOTE: Make sure the app that contains custom tags/filters are listed in INSTALLED_APPS. Also make sure the templatetags directory have an __init__.py file.

Leave a comment