37 lines
768 B
HTML
Raw Normal View History

2025-02-01 19:00:51 +01:00
{% extends "base.html" %}
{% block content %}
2025-02-01 20:07:33 +01:00
<h1>Flake details</h1>
<ul>
<li>Flake: {{ uri }}</li>
</ul>
2025-02-01 19:00:51 +01:00
<h2>Revisions</h2>
<ul>
{% for revision in revisions %}
2025-02-09 22:18:43 +01:00
<li><a href="{{ revision.revision_link() }}">{{ revision.revision_uri }}</a> {% match revision.last_modified_time() %}{% when Some with (last_modified_time) %}({{ last_modified_time }}){% when None %}{% endmatch %}</li>
2025-02-01 19:00:51 +01:00
{% endfor %}
</ul>
2025-02-08 15:53:25 +01:00
<h2>Current Inputs</h2>
<ul>
{% for input in current_inputs %}
<li>
{{ input.input_name }}
<ul>
2025-02-08 16:51:16 +01:00
{% match input.locked_flake_uri %}
{% when Some with (locked_flake_uri) %}
<li>Flake: <a href="{{ input.locked_flake_link() }}">{{ locked_flake_uri }}</a></li>
2025-02-08 15:53:25 +01:00
{% when None %}
{% endmatch %}
</ul>
</li>
{% endfor %}
</ul>
2025-02-01 19:00:51 +01:00
{% endblock %}