X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/d963aa30b7dc4b18fac35309e30a64c31e02d65d..28579180e55dc671bc646f58a3d0d56630922255:/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 b6960b9c4..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 %>