mirror of
https://github.com/Hopiu/django-fobi.git
synced 2026-05-10 13:54:41 +00:00
6 lines
144 B
Python
6 lines
144 B
Python
__all__ = ('disable_admin_tools',)
|
|
|
|
|
|
def disable_admin_tools(request):
|
|
"""Disable admin tools."""
|
|
return {'ADMIN_TOOLS_DISABLED': True}
|