]> git.openstreetmap.org Git - rails.git/blobdiff - app/views/old_relations/show.html.erb
Link to details from way version pages
[rails.git] / app / views / old_relations / show.html.erb
index 1a34e9adec62f8636e797883b2f3bea627f39432..dd52b383370dbcb14cfd0748dc73cbae37e54947 100644 (file)
@@ -4,6 +4,20 @@
 
 <%= render :partial => "browse/relation", :object => @feature %>
 
+<% unless @feature.redacted? %>
+  <div class='secondary-actions'>
+    <%= link_to t("browse.download_xml"), relation_version_path(*@feature.id) %>
+  </div>
+<% end %>
+
 <div class='secondary-actions'>
-  <%= link_to t("browse.download_xml"), relation_version_path(*@feature.id) %>
+  <% 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>