<ul id="rev-list">
{% for item in graphItems %}
<li>
{% if item.rev is defined %}
<a id="{{ item.short_rev }}" class="btn btn-default btn-sm" href="{{ path('commit', {repo: repo, commit: item.rev}) }}"> {{ item.short_rev }} </a>
<strong> {{ item.branch }} </strong>
<em>{{ item.subject }}</em> by
<span class="author">{{ item.author }} <{{ item.author_email }}></span>
<span class="time">{{ item.date }}</span>;
{% else %}
<span/>
{% endif %}
</li>
{% endfor %}
</ul>
</div>
<div style="clear:both"><!-- --></div>
</div>
</div>
<hr/>
{% endblock %}