Removed duplicate lookup in AdminSite.app_index view
AdminSites.app_index
needs an app_name
to render title page.
Currently it is retrieved by an apps.get_app_config
lookup, but the same name is already present in app_dict
dictionary
app_dict[app_label] = {
'name': apps.get_app_config(app_label).verbose_name,
Change History
(7)
Owner: |
changed from nobody to Raffaele Salmaso
|
Status: |
new → assigned
|
Summary: |
Remove duplicate lookup in AdminSite.app_index view → Removed duplicate lookup in AdminSite.app_index view
|
Triage Stage: |
Unreviewed → Accepted
|
Type: |
Uncategorized → Cleanup/optimization
|
Needs tests: |
unset
|
Triage Stage: |
Accepted → Ready for checkin
|
Resolution: |
→ fixed
|
Status: |
assigned → closed
|
PR https://github.com/django/django/pull/13451