2025-07-15 11:43:28 +01:00

24 lines
574 B
HTML

{% extends "base.html" %}
{% block title %}URLs - KTVManager{% endblock %}
{% block content %}
<h2>URLs</h2>
<table class="table table-striped">
<thead>
<tr>
<th>#</th>
<th>URL</th>
</tr>
</thead>
<tbody>
{% for url in urls %}
<tr>
<td>{{ loop.index }}</td>
<td><a href="{{ url }}" target="_blank">{{ url }}</a></td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}