{% extends "layouts/default.html" %} {% load gravatar %} {% load vcs %} {% block content %}

{{ commit.message|oneline }}

Committer
{{ commit.committer }}
Committed
{{ commit.committed_date }}
Author
{{ commit.author }}
Written
{{ commit.authored_date }}
Message
{{ commit.message }}
{% for diff in diffs %} {% else %} {% endif %} {% endfor %}
{% if diff.a %}{{ diff.a.path }}{% else %}(New File){% endif %} {% if diff.a.path != diff.b.path %} => {% if diff.b %}{{ diff.b.path }}{% else %}(Deleted){% endif %} {% endif %} {% for change in diff.changes %} {% if change.type == '@' %}
{{ change.text }}
{% if change.type != '+' %}{{ change.line_a }}{% endif %} {% if change.type != '-' %}{{ change.line_b }}{% endif %} {{ change.text }}
{% endfor %}
{% endblock %}