{% extends "base.html" %} {% import "util.html" as util %} {% block title %}{{ summary }}{% endblock %} {% block body %}

Commit

commit {{ hash }}
Author:
{{ author }}
AuthorDate:
{{ author_date }}
Commit:
{{ commit }}
CommitDate:
{{ commit_date }}
{% for commit in parents %}
Parent:
{% call util::commit_short(commit.short, commit.reachable)%}
{% endfor %} {% for commit in children %}
Child:
{% call util::commit_short(commit.short, commit.reachable)%}
{% endfor %}
{{ message }}
{% endblock %}