Display scanned flakes too

This commit is contained in:
clerie 2025-02-01 20:17:04 +01:00
parent 652c7afb7a
commit 131ffd7a23
2 changed files with 7 additions and 0 deletions

View File

@ -33,6 +33,11 @@ impl Storage {
SELECT SELECT
uri uri
FROM flake_revisions FROM flake_revisions
UNION
SELECT
uri
FROM flake_revisions_inputs
WHERE uri IS NOT NULL
GROUP BY uri GROUP BY uri
ORDER BY uri ORDER BY uri
") ")

View File

@ -3,6 +3,8 @@
{% block content %} {% block content %}
<h1>All flakes</h1> <h1>All flakes</h1>
<p>Displays all flakes explicitly scanned and automatically discovered by the tracker.</p>
<ul> <ul>
{% for flake in flakes %} {% for flake in flakes %}
<li><a href="{{ flake.link() }}">{{ flake.uri }}</a></li> <li><a href="{{ flake.link() }}">{{ flake.uri }}</a></li>