BAPSicle/templates/loglist.html
2020-11-09 00:42:09 +00: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 %}