{% extends "base.html" %} {% block title %}{{ summary }}{% endblock %} {% macro r_class(reachable) %} {%- if reachable == 0 -%} orphaned {%- else if reachable == 1 -%} reachable {%- else -%} tracked {%- endif -%} {% endmacro %} {% macro r_title(reachable) %} {%- if reachable == 0 -%} This commit is orphaned. It can't be reached from any ref. {%- else if reachable == 1 -%} This commit can only be reached from untracked refs. {%- else -%} This commit can be reached from a tracked ref. {%- endif -%} {% endmacro %} {% block body %}

Commit

commit {{ hash }}
Author:
{{ author }}
AuthorDate:
{{ author_date }}
Commit:
{{ commit }}
CommitDate:
{{ commit_date }}
{% for commit in parents %}
Parent:
{{ commit.description }}
{% endfor %} {% for commit in children %}
Child:
{{ commit.description }}
{% endfor %}
{{ message }}
{% endblock %}