这是我模板的代码。 is_hod
字段是布尔字段
<table class="table" style="text-align: left;">
<thead>
<tr>
<th>Requested by</th>
<th>Requested on</th>
</tr>
</thead>
{% for request in all_requests %}
<tbody>
{% if retest.is_hod %}
<tr>
<td>{{ request.name }}</td>
<td>{{ request.date }}</td>
<td><button onclick="location.href= '/retest/{{ request.id }}/';">View details</button></td>
<tr>
{% endif %}
</tbody>
{% endfor %}
</table>