我想使用html(和django后端)显示一个复选框。这是我为此写的html。我使用的是Materialise的最新版本。但是我得到的复选框是不可点击的。难道我做错了什么?我读到Materialise复选框在<div>
标记中不起作用。
我的表确实在<div>
标签中。什么是变通方法?如果没有解决方法,如何使用默认的html5复选框?
<table class="striped bordered centered">
<thead>
<tr>
<th>Departments</th>
{% for program in program_list %}
<th>{{program.name}}</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for department in department_list %}
<tr>
<th>{{department.name}}</th>
{% for program in program_list %}
<td>
<input id="{{forloop.parentloop.counter}}_{{forloop.counter}}" type="radio">
<label for="{{forloop.parentloop.counter}}_{{forloop.counter}}"></label>
</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>