如何覆盖 fieldset.html 模板以便可以传递更多参数
我要覆盖 admin fieldset.html 模板吗? 我需要访问该模型。 我有一个名为domain的表,我需要查询数据库(Domain.objects.all)获取所有域的列表并将其传递给模板。 我将如何/在哪里做到这一点,特别是在管理界面方面。 谢谢
I am overriding the admin fieldset.html template?
I need to access the model.
I have a table called domain and I need to query the database (Domain.objects.all) get a list of all the domains and pass it to the template.
How/where would I do it especially with respect to admin interface.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
覆盖视图的文档:
http://docs.djangoproject .com/en/dev/ref/contrib/admin/#other-methods
Documentation for overriding the view:
http://docs.djangoproject.com/en/dev/ref/contrib/admin/#other-methods
我发现在这种情况下制作模板标签通常有效。在您编写的模板中,您通常可以创建一个标签,将其命名为“get_domains”,其功能如下:
I find making a template tag usually works in this situation. In the template you are writing, you can usually make a tag, call it something like 'get_domains' that functions like this: