flake-tracker/templates/flakes.html

13 lines
201 B
HTML
Raw Normal View History

2025-02-01 18:34:14 +01:00
{% extends "base.html" %}
{% block content %}
<h1>All scanned flakes</h1>
<ul>
{% for flake in flakes %}
2025-02-01 19:00:51 +01:00
<li><a href="{{ flake.link() }}">{{ flake.uri }}</a></li>
2025-02-01 18:34:14 +01:00
{% endfor %}
</ul>
{% endblock %}