姜戈“乡土风味”在管理中选择小部件
我想使用 in_.forms.INStateSelect行政 。
我应该在模型中添加什么文件?我怎样才能让它在 admin 中显示一个小部件?
编辑
我正在尝试这个
from django.contrib.localflavor.in_.forms import INStateSelect
state = INStateSelect()
谢谢!
I want to use in_.forms.INStateSelect in admin .
what filed should I add in model ? and how can I make it to show a widget in admin ?
Edit
I am trying this
from django.contrib.localflavor.in_.forms import INStateSelect
state = INStateSelect()
Thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你在哪里尝试该代码?需要将小部件附加到字段...
这是您可以执行此操作的一种方法:
另一种方法是覆盖管理表单并使用
INStateField
Where are you trying that code? A widget needs to be attached to a field...
Here's one way you could do this:
Another would be to override the admin form and use the
INStateField