Remove inputs related codepaths

This commit is contained in:
2025-08-24 13:38:23 +02:00
parent 334ed4ce9a
commit 5171770f1a
10 changed files with 63 additions and 368 deletions

View File

@@ -4,7 +4,7 @@
<h1>Flake details</h1>
<ul>
<li>Flake: {{ uri }}</li>
<li>Flake: {{ flake_uri }}</li>
</ul>
<h2>Revisions</h2>
@@ -15,22 +15,5 @@
{% endfor %}
</ul>
<h2>Current Inputs</h2>
<ul>
{% for input in current_inputs %}
<li>
{{ input.input_name }}
<ul>
{% match input.locked_flake_uri %}
{% when Some with (locked_flake_uri) %}
<li>Flake: <a href="{{ input.locked_flake_link() }}">{{ locked_flake_uri }}</a></li>
{% when None %}
{% endmatch %}
</ul>
</li>
{% endfor %}
</ul>
{% endblock %}