Django - 向作者添加相关书籍

发布于 2024-12-14 09:17:09 字数 593 浏览 0 评论 0原文

让我们以标准示例为例,

class Author(models.Model):
  name = models.CharField(max_length=100)

class Book(models.Model):
  title = models.CharField(max_length=100)
  author = models.ForeignKey(Author)
  #... Many other fields ...

作者更改页面的管理界面上,我希望能够添加/编辑他的书籍

你要告诉我 RTFM 并使用 InlineModelAdmin< /a>.
但是等等,正如您所看到的,Books 中有“许多其他字段”,并且它不容易编辑。

我的设想是能够简单地在作者更改页面中显示书名,并提供添加或编辑他的书籍的链接。我怎样才能做到这一点?

Lets take the standard example

class Author(models.Model):
  name = models.CharField(max_length=100)

class Book(models.Model):
  title = models.CharField(max_length=100)
  author = models.ForeignKey(Author)
  #... Many other fields ...

On the admin interface from the Author change page, I'd like to be able to add/edit his Books.

There you are going to tell me please RTFM and use a InlineModelAdmin.
But wait, as you can see there are "Many other fields" in Books and it will not be easily editable.

What I imagined is to be able to simply display the book titles in the Author change page, and supply links to add or edit his books. How can I do that ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

倾城月光淡如水﹏ 2024-12-21 09:17:09

您可以覆盖change_view和/或编辑change_form模板。

您可以参考文档中有关此主题的部分: 覆盖与替换管理模板

可以在此处找到一些更具体的信息:显示 django admin 中对象的完整更改表单的链接< /a>

You can override the change_view and/or edit the change_form template.

There's a section in the docs you can consult on this topic: Overriding vs. replacing an admin template

Some more specific information can be found here: Display link to full change form for object in django admin

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