django admin create superuser
$ python manage.py createsuperuser
djanog shell change password
from django.contrib.auth.models import User usr = User.objects.get(username='your username') usr.is_superuser=True usr.is_staff=True usr.set_password('raw password') usr.save()
django create superuser from script
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='superuser@super.com', password='rmx55', is_staff=True, is_active=True, is_superuser=True )
how to get the user argent in django
request.META['HTTP_USER_AGENT']
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us