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
Make sure the load statement is correct. It should be the name of the file, not the name of the app. For instance, if you have this app:
appname
├── __init__.py
├── templatetags
│   ├── __init__.py
│   └── foobarfilename.py
Then you should put this in your template:
{% load foobarfilename %}
Of course, you should check the other answers too.