如何在 Django 的 ModelAdmin 表单中实现内联内联?

发布于 2024-10-16 14:26:15 字数 398 浏览 1 评论 0原文

基本说明:

我正在开发一个目录应用程序,该应用程序以产品为模型,与画廊具有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鹿! 2024-10-23 14:26:15

在内联中,您必须放置一个带有相关对象的 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文