mirror of https://github.com/morpheus65535/bazarr
22 lines
388 B
HTML
22 lines
388 B
HTML
<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>
|
|
|