blob: 15105410603228ade907af3ed64a56f211502f82 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{% extends "base.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 %}
|