0
我努力了神社模板環路內的if
聲明偷偷聲明神社:嵌套'如果「for」循環
</table>
<class="container">
<table border ="1">
<caption> BBOXX <caption>
<thead class="thead-inverse">
<tr>
<th>CU Serial</th>
<th>System</th>
<th>Version</th>
<th>Enable Status</th>
</tr>
{% for d in client_data %}
<tr>
<td>{{ d["serial_number"]}} </td>
<td>{{ d["hardware_type"]}} </td>
{% if {{ d["current_enable_flag"]}} == TRUE %}
<td> {{ON}} </td>
{% else %}
<td> {{OFF}} </td>
{% endif %}
</tr>
{% endfor %}
</table>
誤差TemplateSyntaxError: expected token ':', got '}'
如果要這樣:
是?
我認爲你需要的':'if語句之後:'如果{{d [ 「current_enable_flag」]}} == TRUE:' – numbermaniac
@numbermaniac:這是不是Python代碼,不需要使用':'。 –
@MartijnPieters啊我的錯誤,從標籤我認爲「偷偷摸摸的陳述」一定是Python代碼。 – numbermaniac