我正在制作一个Django应用程序,有自定义用户。我在下面列出了我的问题的关键部分,缺失的代码用'...'表示。我的自定义用户模型有如下的外键关系:
class MyCustomUser(models.AbstractBaseUser, models.PermissionsMixin)
...
location = models.ForeignKey(Location)
class Location(models.Model)
name = models.CharField(max_length=50, blank=True, null=True)
我编写了一个包含此字段的自定义用户表单,如下所示:
class MyCustomUserCreationForm(models.ModelForm)
...
location = forms.ModelChoiceField(Location.objects.all())
这一切看起来都工作正常,但是,位置的选择字段的右边没有加号按钮。我希望能够在创建用户时添加一个位置,就像在Django教程中创建选项时添加投票一样。根据to this question,如果我没有权限更改模型,我可能看不到绿色加号。但我是以超级用户的身份登录的,有所有权限。知道我做错了什么吗?
5条答案
按热度按时间6ljaweal1#
You need to set a
RelatedFieldWidgetWrapper
wrapper in your model form:The RelatedFieldWidgetWrapper (found in django.contrib.admin.widgets) is used in the Admin pages to include the capability on a Foreign Key control to add a new related record. (In English: puts the little green plus sign to the right of the control.)
I could make a mistake in the example code, so see these posts and examples:
pnwntuvh2#
我已经根据上面的答案创建了方法:
然后从我的窗体调用这个方法:
这在Django 1.8.2上运行良好。
5hcedyr03#
Google在搜索如何在具有外键关系的自定义表单中的字段旁边获得“+”图标时向我指出了这个页面,所以我想我应该添加。
对我来说,使用
django-autocomplete-light
很好地完成了这个任务,使用了“添加另一个”功能。w9apscun4#
你甚至不需要走那么远,此外,这些答案可能是过时的,因为他们没有为我工作的任何能力。
我解决这个问题的方法是,只要您的模型中已经有了ForeignKey字段,那么您就可以创建自定义ModelChoiceField:
接下来的关键是NOT为ModelForm中的ModelChoiceField创建自定义字段(即 location = forms.ModelChoiceField(Location.objects.all()))
换句话说,把它去掉,在ModelForm中有这样的内容:
最后,在ModelAdmin中:
z31licg05#
替代方法:使用**.remote_field**代替rel
谢谢你,