Django admin - How can I add the green plus sign for Many-to-many Field in custom admin form(Django admin - 如何在自定义管理表单中为多对多字段添加绿色加号)
问题描述
当我在表单中定义多选字段(照片)时,用于在管理表单中添加新实例的绿色加号按钮消失了.即,删除带有定义的行 (photos = ...) 会使加号出现.但是,为了使用自定义字段/小部件,我需要弄清楚这一点.
The green plus sign button for adding new instances in the admin form disappears for my MultiSelect field (photos) when I define it in my form. Ie, removing the line with the definition (photos = ...) makes the plus sign appear. However, in order to use a custom Field/Widget I need to figure this out.
class GalleryForm(ModelForm):
photos = ModelMultipleChoiceField(queryset=Photo.objects.all(), label="Photos")
def __init__(self, *args, **kwargs):
super(GalleryForm, self).__init__(*args, **kwargs)
我查看了 Django 源代码,似乎我必须将我的小部件包装在 RelatedFieldWidgetWrapper 中,但我还没有完全理解它.感谢任何帮助!
I've peeked at the Django source code and it seems like I have to wrap my widget in a RelatedFieldWidgetWrapper, but I haven't quite gotten my head around it. Any help is apprecietad!
推荐答案
借助 lazerscience 和这个 post 我得到了以下结果.
With the help from lazerscience and this post I ended up with the following.
模型管理员:
class GalleryAdmin(admin.ModelAdmin):
form = GalleryForm
def __init__(self, model, admin_site):
self.form.admin_site = admin_site
super(GalleryAdmin, self).__init__(model, admin_site)
还有我的表格:
class GalleryForm(ModelForm):
photos = ThumbnailChoiceField(queryset=Photo.objects.all(), label='Photos', widget=MyWidget(), required=False)
def __init__(self, *args, **kwargs):
super(GalleryForm, self).__init__(*args, **kwargs)
rel = ManyToOneRel(self.instance.photos.model, 'id')
self.fields['photos'].widget = RelatedFieldWidgetWrapper(self.fields['photos'].widget, rel, self.admin_site)
这篇关于Django admin - 如何在自定义管理表单中为多对多字段添加绿色加号的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:Django admin - 如何在自定义管理表单中为多对多字段添加绿色加号
基础教程推荐
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- Discord.py 缺少必需的参数 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
