我有一个基于 django.contrib.auth.models 的模型用户的表单
我创建了另一个名为 UserProfile 的模型,其中包含有关用户的更多信息。
在我的 forms.py 中,我有一个基于以下内容的表单:
class Meta:
model = User
如何在我的 html 中显示 UserProfile 类拥有的字段?
PS.:在 UserProfile 类中,我已经创建了一个字段 user = models.OneToOneField(User)
提前致谢!