Rename flake list template

This commit is contained in:
2025-02-09 22:21:29 +01:00
parent bfbecb87d9
commit daa12a9dc4
3 changed files with 4 additions and 4 deletions

14
templates/flake_list.html Normal file
View File

@@ -0,0 +1,14 @@
{% extends "base.html" %}
{% block content %}
<h1>All flakes</h1>
<p>Displays all flakes explicitly scanned and automatically discovered by the tracker.</p>
<ul>
{% for flake in flakes %}
<li><a href="{{ flake.flake_link() }}">{{ flake.flake_uri }}</a></li>
{% endfor %}
</ul>
{% endblock %}