{{ entry.sha[0:7] }} {{ entry.subject }} +{{calculate_total_additions(entry.numstat)}} -{{calculate_total_deletions(entry.numstat)}} {{entry.commit_date.strftime("%B %d, %Y %I:%M:%S")}}

{{entry.author_name}}

{% if entry.body %}
{% for line in entry.body.split('\n') %}

{{ line }}

{% endfor %}
{% endif %} {% if entry.numstat %}
{% for numstat_entry in entry.numstat %}

+{{numstat_entry.additions}} -{{numstat_entry.deletions}} {{numstat_entry.path}}

{% endfor %}
{% endif %} {% if entry.submodule_updates %}
{% for sub_update in entry.submodule_updates.values() %}

{{ sub_update.submodule_name }}: {{ sub_update.from_sha[0:7] }} -> {{ sub_update.to_sha[0:7] }}

{% with entries = sub_update.entries %} {% include "change_log_entries.html" %} {% endwith %} {% endfor %}
{% endif %}