You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
388 B
22 lines
388 B
5 years ago
|
<table>
|
||
|
<colgroup>
|
||
|
<col style="width:20%"/>
|
||
|
<col/>
|
||
|
</colgroup>
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>Resource</th>
|
||
|
<th>Value</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for key, value in rows %}
|
||
|
<tr class="{{ loop.cycle('flDebugOdd', 'flDebugEven') }}">
|
||
|
<td>{{ key|escape }}</td>
|
||
|
<td>{{ value|escape }}</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
|