{# Goblet - Web based git repository browser Copyright (C) 2012-2014 Dennis Kaarsemaker See the LICENSE file for licensing details #} {% extends "repo_base.html" %} {% block subtitle %}Commits{% endblock %} {% block repo_content %}
{% for commit in log %} {% if last_date != commit.commit_time - commit.commit_time % 86400 %} {% set last_date = commit.commit_time - commit.commit_time % 86400 %}
{{ commit.commit_time|strftime("%b %d, %Y") }}
{% endif %}
{{ commit.message|shortmsg }} {% if commit.message|longmsg %}more…{% endif %} {% for reftype, refid in refs[commit.hex] %}{{ refid }}{% endfor %} {{ commit.message|longmsg }}
{% if commit.parents %}
Parent commit{% if commit.parents|length > 1%}s{% endif %} {% for parent in commit.parents %} {{ parent.hex[:7] }} {{ parent.message|shortmsg }}
{% endfor %}
{% endif %} Created by {{ commit.author.name }}, {{ commit.author.time|humantime }} {% if commit.committer.email != commit.author.email %}
Committed by {{ commit.committer.name }}, {{ commit.committer.time|humantime }} {% for ack, who in commit.message|acks %}
{{ ack }}: {{ who|join(", ") }}{% endfor %} {% endif %}
{% endfor %}
{% if pref_page or next_page %} {% endif %} {% endblock %}