diff --git a/themes/bootstrap3/twig/commit.twig b/themes/bootstrap3/twig/commit.twig
index ba63821..e0732f6 100644
--- a/themes/bootstrap3/twig/commit.twig
+++ b/themes/bootstrap3/twig/commit.twig
@@ -18,7 +18,13 @@
{{ commit.body | nl2br }}
{% endif %}
- {{ commit.author.name }} authored on {{ commit.date | format_date }}
Showing {{ commit.changedFiles }} changed files
+
+ {{ commit.author.name }} authored on {{ commit.date | format_date }}
+ {% if commit.author.email != commit.commiter.email %}
+ • {{ commit.commiter.name }} committed on {{ commit.commiterDate | format_date }}
+ {% endif %}
+
Showing {{ commit.changedFiles }} changed files
+
diff --git a/themes/bootstrap3/twig/commits_list.twig b/themes/bootstrap3/twig/commits_list.twig
index 6462cd8..ba9057b 100644
--- a/themes/bootstrap3/twig/commits_list.twig
+++ b/themes/bootstrap3/twig/commits_list.twig
@@ -13,7 +13,12 @@
View {{ item.shortHash }}
{{ item.message }}
- {{ item.author.name }} authored on {{ item.date | format_date }}
+
+ {{ item.author.name }} authored on {{ item.date | format_date }}
+ {% if item.author.email != item.commiter.email %}
+ • {{ item.commiter.name }} committed on {{ item.commiterDate | format_date }}
+ {% endif %}
+
|
{% endfor %}
diff --git a/themes/default/twig/commit.twig b/themes/default/twig/commit.twig
index a124eca..8b7ab94 100644
--- a/themes/default/twig/commit.twig
+++ b/themes/default/twig/commit.twig
@@ -17,7 +17,13 @@
{{ commit.body | nl2br }}
{% endif %}
- {{ commit.author.name }} authored on {{ commit.date | format_date }}
Showing {{ commit.changedFiles }} changed files
+
+ {{ commit.author.name }} authored on {{ commit.date | format_date }}
+ {% if commit.author.email != commit.commiter.email %}
+ • {{ commit.commiter.name }} committed on {{ commit.commiterDate | format_date }}
+ {% endif %}
+
Showing {{ commit.changedFiles }} changed files
+
diff --git a/themes/default/twig/commits_list.twig b/themes/default/twig/commits_list.twig
index 37850f7..619bc97 100644
--- a/themes/default/twig/commits_list.twig
+++ b/themes/default/twig/commits_list.twig
@@ -13,7 +13,12 @@
View {{ item.shortHash }}
{{ item.message }}
- {{ item.author.name }} authored on {{ item.date | format_date }}
+
+ {{ item.author.name }} authored on {{ item.date | format_date }}
+ {% if item.author.email != item.commiter.email %}
+ • {{ item.commiter.name }} committed on {{ item.commiterDate | format_date }}
+ {% endif %}
+
|
{% endfor %}