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-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 %}
|