summaryrefslogtreecommitdiffstats
path: root/g2h/log_page.py
diff options
context:
space:
mode:
Diffstat (limited to 'g2h/log_page.py')
-rw-r--r--g2h/log_page.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/g2h/log_page.py b/g2h/log_page.py
index 9a3d64f..4b8ee10 100644
--- a/g2h/log_page.py
+++ b/g2h/log_page.py
@@ -25,6 +25,7 @@ class LogPage(Page):
refs = ref_names_for_commit(self.branches, commit.hexsha) + ref_names_for_commit(self.tags, commit.hexsha)
commit_context = {
'committed_datetime': commit.committed_datetime,
+ 'hexsha': commit.hexsha,
'refs': refs,
'summary': commit.summary
}
@@ -38,6 +39,7 @@ class LogPage(Page):
return {
'commits': commits_context,
+ 'content_subdir': self.content_subdir,
'title': self.name + ': Log'
}