标签: python html django
在html页面中,我正在使用{{form.fieldname}}来获取模型中的复选框。
{{form.fieldname}}
我在models.py中有一个复选框字段
models.py
cr=models.BooleanField(default=False)
在html页面中,我有:
{{form.cr}} Continuous Rx<br>
如何禁用复选框复选框的文本字段?