jet_custom_apps_example.py 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. from django.core.management.base import NoArgsCommand
  2. from jet.utils import get_app_list
  3. class Command(NoArgsCommand):
  4. help = 'Generates example of JET custom apps setting'
  5. item_order = 0
  6. def handle_noargs(self, **options):
  7. class User:
  8. is_active = True
  9. is_staff = True
  10. is_superuser = True
  11. def has_module_perms(self, app):
  12. return True
  13. def has_perm(self, object):
  14. return True
  15. class Request:
  16. user = User()
  17. app_list = get_app_list({
  18. 'request': Request(),
  19. 'user': None
  20. })
  21. self.stdout.write('# Add this to your settings.py to customize applications and models list')
  22. self.stdout.write('JET_SIDE_MENU_CUSTOM_APPS = [')
  23. for app in app_list:
  24. app_label = app.get('app_label', app.get('name'))
  25. self.stdout.write(' (\'%s\', [' % app_label)
  26. for model in app['models']:
  27. self.stdout.write(' \'%s\',' % model['object_name'])
  28. self.stdout.write(' ]),')
  29. self.stdout.write(']')