blob: e3a3f1d78f743063fa985db279c211306939fc5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{% extends "index_page.html" %}
{% block content %}
<section class="container" id="history">
{% if data.error %}
<p class="lead">There was an error fetching the history.</p>
{% else %}
<table class=" table-condensed">
<tr>
<th>Age</th>
<th>Commit</th>
<th>Summary</th>
<th>Author</th>
</tr>
{{ data|safe }}
</table>
{% endif %}
</section>
{% endblock %}
|