Good evening, recently I have been using django-admin-menu in Fedora Linux with python v3.7 and Django v3.0.4 but then, when creating the menu:
- Shows the name of the app in the menú, but not the verbose_name of the app.
Checking the Django documentation, I found a solution to the problem:
from django.apps import apps
In the following file custom_admin_menu.py
Now, I would like to ask you:
Is there a method to set custom order of the submenu elements?
Good evening, recently I have been using django-admin-menu in Fedora Linux with python v3.7 and Django v3.0.4 but then, when creating the menu:
Checking the Django documentation, I found a solution to the problem:
from django.apps import apps
In the following file custom_admin_menu.py
Now, I would like to ask you:
Is there a method to set custom order of the submenu elements?