默认 Django 复选框为 true 且隐藏
我正在与 Satchmo 合作,想知道时事通讯订阅,如何让人们在注册时自动订阅时事通讯。我在 forms.py
中找到了这行代码:
newsletter = forms.BooleanField(label=_('Receive Daily Deals'),
widget=forms.CheckboxInput(), required=False)
我假设在 widget
中,我可以添加一些内容以使其自动为 true 并隐藏。
I am working with Satchmo and am wondering for the newsletter subscription, how to make it so when people sign up, they are automatically subscribed to the newsletter. I found this line of code in forms.py
:
newsletter = forms.BooleanField(label=_('Receive Daily Deals'),
widget=forms.CheckboxInput(), required=False)
I am assuming that in the widget
there, I can add something to make it automatically be true and hidden.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以通过向元素添加类来隐藏复选框,如下所示:
You can make checkbox hidden with adding a class to element shown as below: