Include revisions of inputs in flake overview
This commit is contained in:
18
templates/flake.html
Normal file
18
templates/flake.html
Normal 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 %}
|
||||
|
Reference in New Issue
Block a user