X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/30a01fb7f9dedc757a27f9bf97e3d720f4530508..29020530a8fabe1d02e3bc9c41970c9030efc380:/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 9eb6b5bfe..195332b09 100644
--- a/app/views/browse/_common_details.html.erb
+++ b/app/views/browse/_common_details.html.erb
@@ -1,6 +1,10 @@
- <%= t "browse.version" %>
- #<%= common_details.version %>
+ <%= if common_details.redacted?
+ t "browse.redacted_version"
+ else
+ t "browse.version"
+ end %>
+ #<%= link_to_unless_current common_details.version, :controller => "old_#{@type.pluralize}", :action => :show, :version => common_details.version %>
@@ -14,13 +18,12 @@
-
<%= t "browse.#{common_details.visible? ? :edited : :deleted}_ago_by_html",
- :time_ago => tag.abbr(time_ago_in_words(common_details.timestamp, :scope => :"datetime.distance_in_words_ago"),
- :title => l(common_details.timestamp)),
+ :time_ago => friendly_date_ago(common_details.timestamp),
:user => changeset_user_link(common_details.changeset) %>
-
<%= t "browse.in_changeset" %>
- #<%= link_to common_details.changeset_id, :action => :changeset, :id => common_details.changeset_id %>
+ #<%= link_to common_details.changeset_id, changeset_path(common_details.changeset) %>
<% if @type == "node" and common_details.visible? %>
@@ -34,4 +37,4 @@
<% end %>
-<%= render :partial => "tag_details", :object => common_details.tags %>
+<%= render :partial => "browse/tag_details", :object => common_details.tags %>