Django 站点默认
许多“可重用应用程序”需要 django 站点。 管理界面中有一个烦人的字段“发布于”,我无法排除它,因为它没有默认参数(因此该条目将在任何地方发布。我尝试过)。该模型在“可重用应用程序”中进行了描述,因此我不想更改它。
我怎样才能摆脱这个烦人的领域?
Many 'reusable apps' require django-sites.
There is annoying field "publish on" in admin interface, which I can't exclude because it has no default parameter (so the entry will be published nowhere. I tried). The model is described in the 'reusable app' so I don't want to change it.
How can I get rid of this annoying field?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
捕获
pre_save
信号 将允许您注入默认值。Catching the
pre_save
signal will allow you to inject a default value.