如何在 Django 的 ModelAdmin 表单中实现内联内联?
基本说明:
我正在开发一个目录应用程序,该应用程序以产品为模型,与画廊具有 1-N 关系。每个画廊有 N 张照片。
我需要自定义模型产品的添加/编辑表单,如下所示:
- 在同一表单中可以添加/编辑画廊(作为内联,简单,实现)。 [1]
- 但在每个内联画廊中,我可以在同一产品表单中添加照片,
这可能吗?
[1]:
class GallerieInline(admin.StackedInline):
model = Gallerie
extra = 1
class ProductAdmin(admin.ModelAdmin):
inlines = [GallerieInline,]
Basic explanation:
I'm working on a catalog app that has Product as a model that has a 1-N relationship with Galleries. Each Gallerie has N Photos.
I need to customize the add/edit form of my model Product as follows:
- In the same form can add/edit Galleries (as Inlines, easy, implemented). [1]
- But in each Gallerie Inline i can add Photos in the same Product Form
Is that possible?
[1]:
class GallerieInline(admin.StackedInline):
model = Gallerie
extra = 1
class ProductAdmin(admin.ModelAdmin):
inlines = [GallerieInline,]
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在内联中,您必须放置一个带有相关对象的 list_display :S
另一种方式是创建视图并使用 javascript 获取图像并附加到内联
in the inline you must put a list_display with related object :S
Other way its create a view and with javascript get the images and append to inlines