diff --git a/pagure/templates/pull_request.html b/pagure/templates/pull_request.html
index 7120aa8..4e5bbb2 100644
--- a/pagure/templates/pull_request.html
+++ b/pagure/templates/pull_request.html
@@ -253,7 +253,13 @@
{% for patch in diff %}
- {{ patch.new_file_path }}
+
+ {% if patch.new_file_path == patch.old_file_path %}
+ {{ patch.new_file_path }}
+ {% else %}
+ {{ patch.new_file_path }} (Renamed from "{{ patch.old_file_path }}")
+ {% endif %}
+