Hi all,
It's a good practice to avoid hard-coding the project name in
settings. For example, ROOT_URLCONF can be 'urls' instead of
'projectname.urls'.
However, this is not possible with ADMIN_TOOLS_MENU, because of the
split that happens here:
https://bitbucket.org/izi/django-admin-tools/src/889114a2b923/admin_tools/menu/utils.py#cl-19
The exception raised is: Caught ValueError while rendering: need more
than 1 value to unpack
Is it possible to support non-dotted strings in ADMIN_TOOLS_MENU too ?
Regards