Include revisions of inputs in flake overview

This commit is contained in:
2025-02-01 20:29:27 +01:00
parent 4a2f16d6ff
commit aa2ac96288
4 changed files with 21 additions and 16 deletions

18
templates/flake.html Normal file
View File

@@ -0,0 +1,18 @@
{% extends "base.html" %}
{% block content %}
<h1>Flake details</h1>
<ul>
<li>Flake: {{ uri }}</li>
</ul>
<h2>Revisions</h2>
<ul>
{% for revision in revisions %}
<li><a href="{{ revision.link() }}">{{ revision.revision_uri }}</a> ({{ revision.last_modified }})</li>
{% endfor %}
</ul>
{% endblock %}