X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/2e2f2124728ca755b2db8f83f022eaea24b647f0..1cef3c79e3b5bbef348c7029038e70b8da848f02:/app/views/browse/_common_details.html.erb
diff --git a/app/views/browse/_common_details.html.erb b/app/views/browse/_common_details.html.erb
index 179b22f60..07b44a94a 100644
--- a/app/views/browse/_common_details.html.erb
+++ b/app/views/browse/_common_details.html.erb
@@ -1,11 +1,19 @@
- <%= t 'browse.common_details.edited_at' %> |
+ <% if common_details.visible? %>
+ <%= t 'browse.common_details.edited_at' %> |
+ <% else %>
+ <%= t 'browse.common_details.deleted_at' %> |
+ <% end %>
<%= l common_details.timestamp %> |
<% if common_details.changeset.user.data_public? %>
- <%= t 'browse.common_details.edited_by' %> |
+ <% if common_details.visible? %>
+ <%= t 'browse.common_details.edited_by' %> |
+ <% else %>
+ <%= t 'browse.common_details.deleted_by' %> |
+ <% end %>
<%= link_to h(common_details.changeset.user.display_name), :controller => "user", :action => "view", :display_name => common_details.changeset.user.display_name %> |
<% end %>
@@ -20,4 +28,11 @@
<%= link_to common_details.changeset_id, :action => :changeset, :id => common_details.changeset_id %> |
+<% if common_details.changeset.tags['comment'] %>
+
+ <%= t 'browse.common_details.changeset_comment' %> |
+ <%= linkify(h(common_details.changeset.tags['comment'])) %> |
+
+<% end %>
+
<%= render :partial => "tag_details", :object => common_details %>