You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can't override Django Admin templates because of TemplateSyntaxError: Encountered unknown tag 'load'.
Despite of tags in template I want to change it fails to understand included and extended templates.
I've seen comment in another similar issue #229 (comment) but it requires separate library to be installed.
Is there a native way to override Admin pages?
The text was updated successfully, but these errors were encountered:
Without some glue to join them together (like the tag you linked to which is new for me), you can't mix django and jinja templates natively with django-jinja. so while you could override the templates with jinja2, if they extend or include any other django templates (like the entire admin), you'll get an error as jinja tries to parse django-ese. {% load %} is a django tag that's not supported in the jinja engine, for example.
I can't override Django Admin templates because of
TemplateSyntaxError: Encountered unknown tag 'load'
.Despite of tags in template I want to change it fails to understand included and extended templates.
I've seen comment in another similar issue #229 (comment) but it requires separate library to be installed.
Is there a native way to override Admin pages?
The text was updated successfully, but these errors were encountered: