I have a small Django project I received from a friend. The code works perfectly on his system. However, on my system I get the following error message when running the serv
I was getting the same error but for a different reason so I'll tell you (in case someone else comes the same problem).
I had everything right but I had my custom tag inside a folder named template_tags
and after a long search I found out that it had to be templatetags
, and now it works. So check the folder name is exactly templatetags
.