diff --git a/progit/templates/commit.html b/progit/templates/commit.html index f15073b..6925725 100644 --- a/progit/templates/commit.html +++ b/progit/templates/commit.html @@ -16,6 +16,34 @@
Author | ++ {{ commit.author.name }} {{ '<' + commit.author.email + '>' }} + - {{ commit.commit_time }} + | +
Committer | ++ {{ commit.committer.name }} {{ '<' + commit.committer.email + '>' }} + - {{ commit.commit_time }} + | +
Parent | +
+ {% for parent in commit.parents %}
+
+ {{ parent.oid.hex }}
+ + {% endfor %} + |
+