BAPSicle/ui-templates/log.html

11 lines
210 B
HTML
Raw Normal View History

2020-11-09 00:42:09 +00:00
{% extends 'base.html' %}
{% block content_inner %}
{% if data %}
{% for log in data.logs %}
<code>
{{log}}
</code>
<br>
{% endfor %}
{% endif %}
{% endblock %}