Commit Diff


commit - f7ee760463c69e0dd834e1c13f93229fe08822b3
commit + 54ffadaf00bcf7065810251e5bc3e2200e6addd3
blob - f6d6987c9e6d419dcfc760b4ddba5c5c9fde6c1f
blob + 4afc4410fbc245708341a2e5bb77925a4ba0c6b6
--- gotwebd/pages.tmpl
+++ gotwebd/pages.tmpl
@@ -388,8 +388,12 @@ gotweb_render_age(struct template *tp, time_t time, in
       <div class="commits_header">
         <div class="header_commit_title">Commit:</div>
         <div class="header_commit">{{ rc->commit_id }}</div>
-        <div class="header_author_title">Author:</div>
+        <div class="header_author_title">From:</div>
         <div class="header_author">{{ rc->author }}</div>
+	{{ if strcmp(rc->committer, rc->author) != 0 }}
+          <div class="header_author_title">Via:</div>
+          <div class="header_author">{{ rc->committer }}</div>
+	{{ end }}
         <div class="header_age_title">Date:</div>
         <div class="header_age">
           {{ render gotweb_render_age(tp, rc->committer_time, TM_LONG) }}