管理员,两个不同视图的链接?
在 django admin 中,显示寄存器的视图有 指向“编辑”的链接,但是如果需要额外的链接会发生什么 另一种看法? 例如: 我有显示注册人员列表的视图,昵称是 链接到编辑页面(Django 的正常方式),但我需要 另一个链接将向我展示人们的“文章”和 另一个是人们的“评论”。 用 django admin 做这个怎么样? 谢谢
in django admin the views that show the register's just have
a link to "edit", but what happen if a need an extra(S) links to
another views?
for example:
i have view that show the list of registered People, the nick is
linking to the Edit page (the normal way of Django), but i need
another links that will show me the "articles" of the people and
another the "comments" of the people.
how ill make this with django admin?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
(我假设要回答模型中的一些字段名称)
使“评论”中的作者字段可搜索:
使用 list_display 和 HTML 来控制人员列表管理页面上显示的内容:
并将
/admin/pathto/comments/
更改为您的评论的管理列表页面。基本上,您将引导用户访问评论搜索结果页面。
(I'm assuming some field names from your models to answer)
Make the author field from "comment" searchable:
Use list_display and HTML to control what's displayed on the people's list admin page:
And change
/admin/pathto/comments/
to whatever your comment's admin list page is.Basically you're going to direct your users to the comments search result page.