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

@@ -5,37 +5,8 @@
<ul>
<li>Revision: {{ revision_uri }}</li>
<li>Revision of: <a href="{# flake_revision.flake_link() #}">{# flake_revision.uri #}</a></a>
<li>Revision of: <a href="{{ revision.flake_link() }}">{{ revision.flake_uri }}</a></a>
</ul>
<h2>Inputs</h2>
<ul>
{% for input in 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 %}
{% match input.locked_revision_uri %}
{% when Some with (locked_revision_uri) %}
<li>Revision: <a href="{{ input.locked_revision_link() }}">{{ locked_revision_uri }}</a></li>
{% when None %}
{% endmatch %}
</ul>
</li>
{% endfor %}
</ul>
<h2>Input of</h2>
<ul>
{% for input in input_of %}
<li><a href="{{ input.revision_link() }}">{{ input.revision_uri }}</a></li>
{% endfor %}
</ul>
{% endblock %}