from django.contrib.auth.models import User
superusers = User.objects.filter(is_superuser=True)
if not superusers:
    User.objects.create_superuser('admin', '__ADMIN_E_MAIL__', '__ADMIN_PASS__')
