X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/2f222c49dd60ea505f2c1631efa02fbd9f0f5667..bd1f568c0a91d8d58b05912fdae1a6912edd3e62:/app/views/old_ways/show.html.erb?ds=sidebyside
diff --git a/app/views/old_ways/show.html.erb b/app/views/old_ways/show.html.erb
index fa6987157..e9976dd78 100644
--- a/app/views/old_ways/show.html.erb
+++ b/app/views/old_ways/show.html.erb
@@ -3,3 +3,23 @@
<%= render "sidebar_header", :title => t("browse.way.title_html", :name => printable_name(@feature)) %>
<%= render :partial => "browse/way", :object => @feature %>
+
+
+ <% unless @feature.redacted? %>
+ <%= link_to t("browse.download_xml"), way_version_path(*@feature.id) %>
+ ·
+ <% 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 %>
+