Django: Create custom template tag -> ImportError
- by Alexander Scholz
I'm sorry to ask this again, but I tried several solutions from stack overflow and some tutorials and I couldn't create a custom template tag yet. All I get is ImportError: No module named test_tag when I try to start the server via python manage.py runserver.
I created a very basic template tag (found here: django templatetag?) like so:
My…