{% extends "git_browse/base.html" %} {% block stylesheets %}{{ block.super }} {% endblock %} {% block gitbrowse %} {% if commit %}

Commit sha1 hash

{{ commit.id }}

Parent sha1 hash

{% if commit.parenthash %} {{ commit.parenthash }} {% else %}No parent... root commit?{% endif %}

Tree sha1 hash

{% if commit.treehash %} {{ commit.treehash }} {% else %}No tree hash?{% endif %}

Author

{{ commit.author }}

Author Date

{{ commit.author_date }}

Committer

{{ commit.committer }}

Committer Date

{{ commit.committer_date }}
{% if commit.pretty_diff %}
{{ commit.pretty_diff }}
{% else %} {% if commit.rawdiff %}
{{ commit.rawdiff|escape|wordwrap:80 }}
{% else %}No diff{% endif %} {% endif %} {% else %}

No such object: {{ hash }}

{% endif %} {% endblock %}