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.
27 lines
614 B
27 lines
614 B
5 years ago
|
{% if records %}
|
||
|
<table>
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>Level</th>
|
||
|
<th>Time</th>
|
||
|
<th>Message</th>
|
||
|
<th>Location</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for record in records %}
|
||
|
<tr class="{{ loop.cycle('flDebugOdd', 'flDebugEven') }}">
|
||
|
<td>{{ record.level }}</td>
|
||
|
<td>{{ record.time }}</td>
|
||
|
<td>{{ record.message }}</td>
|
||
|
<td title="{{ record.file_long }}:{{ record.line }}">{{ record.file }}:{{ record.line }}</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
</table>
|
||
|
{% else %}
|
||
|
<p>No messages logged.</p>
|
||
|
{% endif %}
|
||
|
|
||
|
|