“Django admin Utwórz superuser” Kod odpowiedzi

Django admin Utwórz superuser

$ python manage.py createsuperuser
Defeated Dog

Utwórz superuser django shell

user@host> manage.py shell
>>> from django.contrib.auth.models import User
>>> user=User.objects.create_user('foo', password='bar')
>>> user.is_superuser=True
>>> user.is_staff=True
>>> user.save()
Clear Camel

Django stwórz superuser ze skryptu

from django.core.management.base import BaseCommand, CommandError
from django.contrib.auth.models import User

class Command(BaseCommand):

    def handle(self, *args, **options):

        # The magic line
        User.objects.create_user(username= 'rmx',
                                email='[email protected]',
                                password='rmx55',
                                is_staff=True,
                                is_active=True,
                                is_superuser=True
        )
Arno Deceuninck

Django admin Utwórz superuser

$ python manage.py shell
>>> from django.contrib.auth import get_user_model
>>> User = get_user_model()
>>> User.objects.create_superuser('username', 'email', 'password')
<User: username>
>>> exit()
marko Hawke

Odpowiedzi podobne do “Django admin Utwórz superuser”

Pytania podobne do “Django admin Utwórz superuser”

Więcej pokrewnych odpowiedzi na “Django admin Utwórz superuser” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu