]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/old_relations/show.html.erb
Merge remote-tracking branch 'upstream/pull/4480'
[rails.git] / app / views / old_relations / show.html.erb
index 1a34e9adec62f8636e797883b2f3bea627f39432..29d0b0079c6dab4f239d23379b5816cc9b65197c 100644 (file)
@@ -5,5 +5,21 @@
 <%= render :partial => "browse/relation", :object => @feature %>
 
 <div class='secondary-actions'>
-  <%= link_to t("browse.download_xml"), relation_version_path(*@feature.id) %>
+  <% unless @feature.redacted? %>
+    <%= link_to t("browse.download_xml"), relation_version_path(*@feature.id) %>
+    &middot;
+  <% end %>
+  <%= link_to t("browse.view_details"), relation_path(@feature.relation_id) %>
+</div>
+
+<div class='secondary-actions'>
+  <% if @feature.version > 1 %>
+    <%= link_to "<< #{t('browse.version')} ##{@feature.version - 1}", old_relation_path(@feature.relation_id, @feature.version - 1) %>
+    &middot;
+  <% end %>
+  <%= link_to t("browse.view_history"), relation_history_path(@feature.relation_id) %>
+  <% if @feature.version < @feature.current_relation.version %>
+    &middot;
+    <%= link_to "#{t('browse.version')} ##{@feature.version + 1} >>", old_relation_path(@feature.relation_id, @feature.version + 1) %>
+  <% end %>
 </div>