BAPSicle/ui-templates/loglist.html
2021-05-25 23:10:39 +01:00

9 lines
206 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 %}