X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/88e72be5b1ca6c25395d30a82d9624ebb2af2b0b..43a4a3a887ef6efb54491f8cc873cc7dc424c1d2:/app/views/old_nodes/show.html.erb
diff --git a/app/views/old_nodes/show.html.erb b/app/views/old_nodes/show.html.erb
index 6a16c789c..9220b2cc2 100644
--- a/app/views/old_nodes/show.html.erb
+++ b/app/views/old_nodes/show.html.erb
@@ -5,5 +5,27 @@
<%= render :partial => "browse/node", :object => @feature %>
- <%= link_to t("browse.download_xml"), node_version_path(*@feature.id) %>
+ <% unless @feature.redacted? %>
+ <%= link_to t("browse.download_xml"), node_version_path(*@feature.id) %>
+ ·
+ <% end %>
+ <%= link_to t("browse.view_details"), node_path(@feature.node_id) %>
+
+
+
+ <% if @feature.version > 1 %>
+ <%= link_to old_node_path(@feature.node_id, @feature.version - 1), :class => "icon-link" do %>
+ <%= previous_page_svg_tag :height => 11 %>
+ <%= "#{t('browse.version')} ##{@feature.version - 1}" %>
+ <% end %>
+ ·
+ <% end %>
+ <%= link_to t("browse.view_history"), node_history_path(@feature.node_id) %>
+ <% if @feature.version < @feature.current_node.version %>
+ ·
+ <%= link_to old_node_path(@feature.node_id, @feature.version + 1), :class => "icon-link" do %>
+ <%= "#{t('browse.version')} ##{@feature.version + 1}" %>
+ <%= next_page_svg_tag :height => 11 %>
+ <% end %>
+ <% end %>