你可以从http://localhost:8200/admin访问管理界面
Please enter the correct username and password for a staff account.
Note that both fields may be case-sensitive.
这是因为你还没有创建staff用户,但不要担心,这可以通过一个命令来修复。
到你的终端运行:
python manage.py createsuperuser
系统将提示你输入用户名和密码(两次),输入它们,并按Enter。
下一步再次运行本地服务器:
python manage.py runserver
然后访问admin interface http://localhost:8200/admin,并输入你的凭据,然后点击Login按钮。
你应该成功登录。