misc python code

This commit is contained in:
ys
2024-12-20 21:50:09 +00:00
parent 6dc40ba6af
commit d3dc84416d
44 changed files with 24998 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
<!DOCTYPE html>
<html>
<head>
<title>Whitelisted URLs</title>
<link href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<div class="container mt-5">
<h1 class="mb-4">Whitelisted URLs</h1>
<a href="{{ url_for('admin') }}" class="btn btn-secondary mb-4">Back to Admin</a>
<table class="table table-bordered">
<thead class="thead-dark">
<tr>
<th>URL</th>
</tr>
</thead>
<tbody>
{% for url in approved_urls %}
<tr>
<td>{{ url[0] }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</body>
</html>