Files
flake-tracker/templates/flake.html

20 lines
429 B
HTML

{% extends "base.html" %}
{% block content %}
<h1>Flake details</h1>
<ul>
<li>Flake: {{ flake_uri }}</li>
</ul>
<h2>Revisions</h2>
<ul>
{% for revision in revisions %}
<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>
{% endfor %}
</ul>
{% endblock %}