fixes #2 history page bug

some style changes
This commit is contained in:
Matthew Scragg 2014-09-11 17:35:17 -05:00
parent 3419ee4f6c
commit 17eabddd70
4 changed files with 67 additions and 56 deletions

View file

@ -18,7 +18,9 @@
{% for h in history %}
<tr>
<td class="checkbox-cell text-center">
{% if h.type != 'delete' %}
<input type="checkbox" name="versions[]" value="{{ h.sha }}" />
{% endif %}
</td>
<td>{{ h.author }}</td>
<td><a href="{{ url_for('wiki.commit', name=name, sha=h.sha) }}" class='label label-primary'>View</a> {{ h.message }} </td>