diff --git a/app/views/user_feedbacks/index.html.erb b/app/views/user_feedbacks/index.html.erb
index 005e7d1bc..5c1113fb9 100644
--- a/app/views/user_feedbacks/index.html.erb
+++ b/app/views/user_feedbacks/index.html.erb
@@ -18,7 +18,12 @@
<%= link_to_user feedback.user %> |
<%= link_to_user feedback.creator %> |
<%= compact_time(feedback.created_at) %> |
- <%= format_text(feedback.body) %> |
+
+ <%= format_text(feedback.body) %>
+ <% if feedback.updated_at > feedback.created_at %>
+ Updated <%= time_ago_in_words_tagged(feedback.updated_at) %>
+ <% end %>
+ |
<% if feedback.editable_by?(CurrentUser.user) %>
<%= link_to "edit", edit_user_feedback_path(feedback) %>
|