Remove inputs related codepaths
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
{% block content %}{% endblock %}
|
||||
</div>
|
||||
|
||||
<center><small><a href="/">Home</a> | <a href="/flakes">All flakes</a></small></center>
|
||||
<center><small><a href="/">Home</a></small></center>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
|
@@ -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 %}
|
||||
|
||||
|
@@ -1,14 +0,0 @@
|
||||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h1>All flakes</h1>
|
||||
|
||||
<p>Displays all flakes explicitly scanned and automatically discovered by the tracker.</p>
|
||||
|
||||
<ul>
|
||||
{% for flake in flakes %}
|
||||
<li><a href="{{ flake.flake_link() }}">{{ flake.flake_uri }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
{% endblock %}
|
@@ -4,7 +4,10 @@
|
||||
<h1>Flake Tracker</h1>
|
||||
|
||||
<ul>
|
||||
<li><a href="/flakes">All flakes</a></li>
|
||||
{% for flake in flakes %}
|
||||
<li><a href="{{ flake.flake_link() }}">{{ flake.flake_uri }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
{% endblock %}
|
||||
|
||||
|
@@ -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 %}
|
||||
|
||||
|
Reference in New Issue
Block a user