Showing 1 changed files with 5 additions and 1 deletions
+5 -1
templates/include/blob_diff_body.html.ep
... ...
@@ -21,7 +21,11 @@
21 21
           <div class="radius-top radius-bottom" style="padding:1px 3px;margin-right:5px;border:1px solid #ccc;display:inline-block;background:#f7f7f7">
22 22
             %= include '/include/diff_status_bar', diff_tree => $diff_tree;
23 23
           </div>
24
-          <%= $file %>
24
+          % if ($status eq 'R' || $status eq 'C') {
25
+            <%= $from_file %> → <%= $file %>
26
+          % } else {
27
+            <%= $file %>
28
+          % }
25 29
           % if ($status ne 'A' && $status ne 'D' && $from_mode_str ne $to_mode_str) {
26 30
             <%= "100$from_mode_str → 100$to_mode_str" %>
27 31
           % }