BAPSicle/ui-templates/loglist.html
2021-04-18 02:03:44 +01:00

9 lines
No EOL
205 B
HTML

{% extends 'base.html' %}
{% block content_inner %}
{% if data %}
{% for log in data.logs %}
<a href="/logs/{{log}}">{{log}}</a>
<br>
{% endfor %}
{% endif %}
{% endblock %}