我试图从模板获取复选框值列表。但是我需要像html-input一样在循环中更改form_field的名称
我使用forms.ModelForm
forms.py
is_used = forms.BooleanField(initial=False, required=False)
template.html
{% for object in objects %}
<h6>{% bootstrap_label form.is_used %}</h6>
*I need something like that with form field*
<h6><input type="checkbox" name="{{ object.id }}></h6
{% endfor %}
我在POST中没有列表,如果我标记为is_used=[0:on, 1:on]
第一个也是最后一个。