X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/7c55a5cb3b07f40ab1897a7d746de27317255c42..bd1f568c0a91d8d58b05912fdae1a6912edd3e62:/app/views/old_ways/show.html.erb
diff --git a/app/views/old_ways/show.html.erb b/app/views/old_ways/show.html.erb
index 6e66fa515..e9976dd78 100644
--- a/app/views/old_ways/show.html.erb
+++ b/app/views/old_ways/show.html.erb
@@ -4,8 +4,22 @@
<%= render :partial => "browse/way", :object => @feature %>
-<% unless @feature.redacted? %>
-
+
+ <% unless @feature.redacted? %>
<%= link_to t("browse.download_xml"), way_version_path(*@feature.id) %>
-
-<% end %>
+ ·
+ <% end %>
+ <%= link_to t("browse.view_details"), way_path(@feature.way_id) %>
+
+
+
+ <% if @feature.version > 1 %>
+ <%= link_to "<< #{t('browse.version')} ##{@feature.version - 1}", old_way_path(@feature.way_id, @feature.version - 1) %>
+ ·
+ <% end %>
+ <%= link_to t("browse.view_history"), way_history_path(@feature.way_id) %>
+ <% if @feature.version < @feature.current_way.version %>
+ ·
+ <%= link_to "#{t('browse.version')} ##{@feature.version + 1} >>", old_way_path(@feature.way_id, @feature.version + 1) %>
+ <% end %>
+