{% extends "base.html" %} {% block title %}{{ sha[..8] }} - {{ repo }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

{{ sha[..8] }}

Archive
Tree [{{ sha[..8] }}] [>]
{% if !refs.is_empty() %}
refs
{% for r in refs %}{% endfor %}
{% endif %}
commit
{{ sha }}
parent{% if parents.len() != 1 %}s{% endif %}
{% for (parent_sha, _) in parents %}{% endfor %}
author
{{ author }}
date
{{ date }}
committer
{{ committer }}
date
{{ committer_date }}
{% if files_changed > 0 || lines_added > 0 || lines_removed > 0 %}
changes
{{ files_changed }}
insertions
{{ lines_added }}
deletions
{{ lines_removed }}
{% endif %} {% if !message.is_empty() %}
{{ message }}
{% endif %} {% if files_changed > 0 || lines_added > 0 || lines_removed > 0 %}
{% for fc in file_changes %}
{{ fc.change_type }}{{ fc.path }} {% if !fc.hunks.is_empty() %}
{% for hunk in fc.hunks %}
{% for line in hunk %}{{ line.marker }}{{ line.content }}{% endfor %}
{% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% endblock %}