我有一个看起来像这样的模板:
<form method="post" action="{% url ... %}">
{% csrf_token %}
<table class="table">
{% for x in X %}
<tr>
<td>{{ x.name }}</td>
<td><input type="checkbox" value="{{x.id}}"" /></td>
</tr>
{% endfor %}
</table>
</form>
我应该在 django 表单类中为复选框使用什么类型的字段?
感谢您的回答
编辑:
我没有提到,X in loop 是在运行时给出的。它不是预定义值的列表。