0

forms.py 是

class ShowlivereportForm(forms.Form):
    livereport = forms.BooleanField()

如何创建 django 复选框

我不知道如何创建一个显示复选框的模板,谁能给我一个例子

4

1 回答 1

1

您可以在模板中使用 django 的自动as_p功能,也可以手动编写模板(以更好地控制其属性)。

对于自动,您需要在模板中使用它:

{{ form.as_p }}

对于手册,您应该使用以下内容:

<input type="checkbox" id="livereport" name="livereport" {% if form.livereport.value %}checked="checked"{% endif %}>
<label for="livereport">Show live report</label>
于 2013-04-10T20:57:16.123 回答