1👍
You’re using the {% load %}
syntax in a wrong way. Accoring to the doc the {% load foo from bar %}
loads tag or filter named foo
from tag library called bar
. In your case {% load test_tag from _project_.apps.newapp.templatetags %}
the test_tag
is a name of the library instead of a tag or filter name.
So it should be more like:
{% load lower from test_tag %}
- [Answered ]-Creting feed using signals in Django
- [Answered ]-Getting "AttributeError: 'str' object has no attribute 'regex'" in Django urls.reverse
- [Answered ]-Django Custom Authentication –
- [Answered ]-Django Rest Framework – Nested fields: Do not create but get one from existing records
- [Answered ]-Dynamically check if a slug exists
Source:stackexchange.com