{% if commits %}
{% for date, commit in commits %}
<table class="table table-striped">
<thead>
<tr>
<th>{{ date | date("F j, Y") }}</th>
</tr>
</thead>
<tbody>
{% for item in commit %}
<tr>
<td>
<div class="pull-right" style="text-align: right;">
<a class="btn btn-primary btn-sm" href="{{ path('branch', {repo: repo, branch: item.hash}) }}" title="Browse code at this point in history"><span class="fa fa-list-alt"></span> Browse</a>