Django:哪个是在管理页面中呈现外键的小部件?
哪个小部件在管理站点中呈现外键?
我看到有一个名为 RelatedFieldWidgetWrapper
的小部件(仅打印“+”图标)和另一个用于 select
的小部件,但我认为有一个小部件可以同时调用这两个小部件渲染整个字段。
谢谢
Which is the widget that renders the foreign key in the admin site?
I saw that there is a widget called RelatedFieldWidgetWrapper
(that print only the "+" icon) and another for the select
, but I suppose that there is a widget that call both to render the entire field.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
relatedFieldWidgetWrapper只是包裹默认小部件,在本例中选择小部件。
RelatedFieldWidgetWrapper just wraps default widget, in this case Select widget.