Vylepšení seznamu aplikací v Adminu #51

Merged
zelvuska merged 2 commits from pojmenovane_aplikace into master 2024-06-04 20:19:59 +02:00
Showing only changes of commit c78b932587 - Show all commits

View file

@ -51,7 +51,8 @@ def get_app_list(self, request, app_label=None):
'prednasky',
'soustredeni',
]
app_list = [app_dict[label] for label in aplikace_nahore] + [app_dict[label] for label in app_dict if label not in aplikace_nahore]
# Odhlášený admin má prázdný app_dict :-/
app_list = [app_dict[label] for label in aplikace_nahore if label in app_dict] + [app_dict[label] for label in app_dict if label not in aplikace_nahore]
# Sort the models alphabetically within each app.