flake-tracker/templates/flake_list.html

15 lines
297 B
HTML
Raw Permalink Normal View History

2025-02-01 18:34:14 +01:00
{% extends "base.html" %}
{% block content %}
2025-02-01 20:07:33 +01:00
<h1>All flakes</h1>
2025-02-01 18:34:14 +01:00
2025-02-01 20:17:04 +01:00
<p>Displays all flakes explicitly scanned and automatically discovered by the tracker.</p>
2025-02-01 18:34:14 +01:00
<ul>
{% for flake in flakes %}
2025-02-08 16:51:16 +01:00
<li><a href="{{ flake.flake_link() }}">{{ flake.flake_uri }}</a></li>
2025-02-01 18:34:14 +01:00
{% endfor %}
</ul>
{% endblock %}