summaryrefslogtreecommitdiffstats
path: root/gitsrht/templates/commit.html
diff options
context:
space:
mode:
Diffstat (limited to 'gitsrht/templates/commit.html')
-rw-r--r--gitsrht/templates/commit.html7
1 files changed, 3 insertions, 4 deletions
diff --git a/gitsrht/templates/commit.html b/gitsrht/templates/commit.html
index ebf4531..0e81410 100644
--- a/gitsrht/templates/commit.html
+++ b/gitsrht/templates/commit.html
@@ -1,5 +1,5 @@
{% extends "repo.html" %}
-{% import "utils.html" as utils %}
+{% import "utils.html" as utils with context %}
{% block title %}
<title>{{repo.owner.canonical_name}}/{{repo.name}}: {{trim_commit(commit.message)}} - {{cfg("sr.ht", "site-name")}} git</title>
{% endblock %}
@@ -9,9 +9,8 @@
<div class="col-md-10">
<div class="event-list">
<div class="event">
- {{ utils.commit_event(repo, commit, commit_time, trim_commit,
- full_body=True, full_id=True, refs=refs, parents=True,
- any=any) }}
+ {{ utils.commit_event(repo, commit, full_body=True,
+ full_id=True, refs=refs, parents=True) }}
</div>
</div>
</div>