11 lines
210 B
HTML
11 lines
210 B
HTML
|
{% extends 'base.html' %}
|
||
|
{% block content_inner %}
|
||
|
{% if data %}
|
||
|
{% for log in data.logs %}
|
||
|
<code>
|
||
|
{{log}}
|
||
|
</code>
|
||
|
<br>
|
||
|
{% endfor %}
|
||
|
{% endif %}
|
||
|
{% endblock %}
|