-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Overrides of admin templates not found in 7.6 #11668
Labels
Type: Bug
Something isn't working
Comments
njkim
added a commit
that referenced
this issue
Dec 6, 2024
chrabyrd
added a commit
that referenced
this issue
Dec 12, 2024
11 tasks
chiatt
pushed a commit
that referenced
this issue
Dec 12, 2024
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In 7.6, as part of finalizing arches applications patterns, we ordered
INSTALLED_APPS
such that core arches always comes last:arches/arches/settings.py
Lines 381 to 383 in 3050821
However, this has the effect of ignoring core arches's own overrides of the Django admin templates, e.g. the reset password form at templates/registration/reset_password_form.html, because
django.contrib.admin
is near the top of the ordered installed apps.Demo
Expected:
Actual:
Discussion
Should we simply order
django.contrib.admin
last? This will require user action, which we don't like to do in patches. There might be a way to simply prepend the directory with these specific overrides inside ourbuild_templates_config()
hook?cc/ @chrabyrd
The text was updated successfully, but these errors were encountered: