]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/old_relations/show.html.erb
Link to previous/next versions from relation version pages
[rails.git] / app / views / old_relations / show.html.erb
index cfa27c1adc6e31a9cf7fc3b201a1b0f0bc3cf1d3..dd52b383370dbcb14cfd0748dc73cbae37e54947 100644 (file)
@@ -9,3 +9,15 @@
     <%= link_to t("browse.download_xml"), relation_version_path(*@feature.id) %>
   </div>
 <% end %>
+
+<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>