Django 管理员清除表单按钮
我想知道是否有办法在 django 中应用程序的管理表单上放置一个“清除表单”按钮?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想知道是否有办法在 django 中应用程序的管理表单上放置一个“清除表单”按钮?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
在您的模板目录中创建一个文件夹 admin,在其中创建一个文件 语句:
submit_line.html
,将此代码粘贴到其中(这实际上是原始的 Submit_line 以及最后一个现在,虽然这会执行您想要的操作,但“重置表单”按钮在某些浏览器中将显示为不可单击(但某些效果会被禁用),您也可以用
,但我发现这相当难看。最后,您还可以搜索样式表以查看哪些代码失败(类似于 input['reset] '] 某处丢失了)但无论如何,这有效,玩得开心。
In your templates directory create a folder admin, in this create a file
submit_line.html
, paste this code in there (this is actually the original submit_line with the last<input...
statement added:Now, while this will do what you want, the Reset Form button will appear not to be clickable in some browsers (some effect is disabled). It will however work. You can also replace the input by
<button type="reset">Reset form</button>
but I find this rather ugly. Finally, you could also search the stylesheets to see which code fails (it's something like a input['reset'] that's missing somewhere). But anyway, this works, have fun with it