TemplateDoesNotExist at /admin/ admin:admin/index.html error
See original GitHub issueJust installed this package, and I get the above error.
Seems that I cannot use {% extends "admin:admin/index.html" %}
within the templates.
Any thoughts?
Issue Analytics
- State:
- Created 8 years ago
- Comments:15 (4 by maintainers)
Top Results From Across the Web
Admin Site: TemplateDoesNotExist at /admin/ - Stack Overflow
I ran into the same problem, and I had to force pip to re-download django. pip install -r requirements.txt --ignore-installed ...
Read more >django 1.4 - admin TemplateDoesNotExist at /admin/auth/user
Locally we get errors when trying to render the admin pages. However on ... Django error page attached "TemplateDoesNotExist at admin .html".
Read more >Django Templatedoesnotexist Admin/Login.Html - ADocLib
Just installed this package and I get the above error. Seems that I cannot use {% extends admin:admin/index.html %} within the templates. Just...
Read more >Templatedoesnotexist At Admin Login
I am getting the above TemplateDoesNotExist error when I try to execute the code. ... from django.contrib import admin from django.urls import path, ......
Read more >'admin/index.html' does not exist - Google Groups
TemplateDoesNotExist at /admin/. admin/index.html. Created a new virtualenvironment. pip install Django==1.4.21. Pip installs two django directories.
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Django 1.8 > TEMPLATE_LOADERS setting deprecated. You have to use the TEMPLATES dictionary. I think you’re going to want something like:
settings.py
]
also note – django 1.8 moved from django.core.context_processors to django.template.context_processors
But have you correctly configured django-admin-tools ?
Since versions 0.7.x, you must add
admin_tools.template_loaders.Loader
to your template loaders as stated in the release notes and in the documentation.