0👍
✅
The issue was that I was attempting to overwrite the items
tag, overwriting the dict items
method.
In this scenario, it was looking for the items
inside the dict, which is not what I was expecting.
0👍
You need to add 'teemo.tags'
to INSTALLED_APPS
in order for django to find your templatetags
.
Edit
It also seems that you are missing: teemo/tags/__init__.py
file.
- [Django]-How to implement a queue with django models /database?
- [Django]-Looking for read-write lock in Django using PostgreSQL, e.g., SELECT FOR SHARE
- [Django]-How can I disable/remove authorize button in swagger drf_yasg (maintain CSRF) – django
- [Django]-How to dynamically make an existing non-abstract django model, abstract?
Source:stackexchange.com