Django:打印“+”的代码在哪里?靠近外键的图标?
我找不到代码的哪一部分打印靠近每个外键字段的“+”。
在 fieldset.html
中只有对 {{ field.field }}
的调用,但在文件 django/forms/widgets.py
中打印选择的代码不包含该代码,所以我认为有一段管理外键的代码:它在哪里?
谢谢, 乔万尼
I cannot find which part of code print the "+" that is close to every foreign key field.
In fieldset.html
there is only the call to {{ field.field }}
, but in the file django/forms/widgets.py
the code that prints the select, doesn't contain that code, so I suppose that there is a piece of code that manage the foreign key: where is it?
Thanks,
Giovanni
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设您指的是管理界面,您应该在
django/contrib/admin/widgets.py
中查找它,类名为
RelatedFieldWidgetWrapper
Assuming you are referring to the admin interface, you should look for it in
django/contrib/admin/widgets.py
The class name is
RelatedFieldWidgetWrapper