]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/old_relations/show.html.erb
Merge remote-tracking branch 'upstream/pull/4126'
[rails.git] / app / views / old_relations / show.html.erb
index cfa27c1adc6e31a9cf7fc3b201a1b0f0bc3cf1d3..29d0b0079c6dab4f239d23379b5816cc9b65197c 100644 (file)
@@ -4,8 +4,22 @@
 
 <%= render :partial => "browse/relation", :object => @feature %>
 
 
 <%= render :partial => "browse/relation", :object => @feature %>
 
-<% unless @feature.redacted? %>
-  <div class='secondary-actions'>
+<div class='secondary-actions'>
+  <% unless @feature.redacted? %>
     <%= link_to t("browse.download_xml"), relation_version_path(*@feature.id) %>
     <%= link_to t("browse.download_xml"), relation_version_path(*@feature.id) %>
-  </div>
-<% end %>
+    &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>