Files
interdotlink-ripe-updater/ripeupdater/templates/backups.html
T
Christian Harendt dc08fddac3 initial import
2022-05-13 14:33:30 +02:00

17 lines
314 B
HTML

<!doctype html>
<html lang="en">
<head>
<title>ripe-updater backups</title>
</head>
<body>
<h1>Backups</h1>
<ul>
{% for backup in backups %}
<li><a href="backup/{{ backup }}">{{ backup }}</a></li>
{% else %}
<p>No backups found</>
{% endfor %}
</ul>
</body>
</html>