我有与OneToOne模型User相关的模型Profile:
class Profile(models.Model):
user = models.OneToOneField(User)
...
此外,我还有与ForeignKey模型Profile相关的模型书籍:
class Books(models.Model):
profile = models.ForeignKey(Profile)
...
admin.py:
class ProfileInLine(admin.StackedInline):
model = Profile
...
我需要在django admin和该用户中创建用户:
我会感谢你的例子。
答案 0 :(得分:0)
只需创建一个新的管理员用户
python manage.py createsuperuser
然后进入django admin并且:
然后保存管理员用户