在 django 1.2 admin 中预填充作者的最简洁方法?
之前的答案指向 http://code.djangoproject.com/wiki/CookBookNewformsAdminAndUser
我'我想知道是否真的有必要在 Django 1.2 中同时定义 save_model
和 save_formset
方法才能预填充作者?
A previous answer points to http://code.djangoproject.com/wiki/CookBookNewformsAdminAndUser
I'm wondering if it's really necessary to define both save_model
and save_formset
methods in Django 1.2 in order to prepopulate the author?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用内联,您还需要为内联模型覆盖
save_formset
,对于使用普通管理save_model
应该足够了!If you are working with inlines you need to override
save_formset
for you inline models as well, for working with the normal adminsave_model
should be sufficent!