X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/88e72be5b1ca6c25395d30a82d9624ebb2af2b0b..a0a269b206ed1f1ca096b17eee35815091cdbfc5:/app/views/old_relations/show.html.erb
diff --git a/app/views/old_relations/show.html.erb b/app/views/old_relations/show.html.erb
index 1a34e9ade..dd52b3833 100644
--- a/app/views/old_relations/show.html.erb
+++ b/app/views/old_relations/show.html.erb
@@ -4,6 +4,20 @@
<%= render :partial => "browse/relation", :object => @feature %>
+<% unless @feature.redacted? %>
+
+ <%= link_to t("browse.download_xml"), relation_version_path(*@feature.id) %>
+
+<% end %>
+
- <%= 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) %>
+ ·
+ <% end %>
+ <%= link_to t("browse.view_history"), relation_history_path(@feature.relation_id) %>
+ <% if @feature.version < @feature.current_relation.version %>
+ ·
+ <%= link_to "#{t('browse.version')} ##{@feature.version + 1} >>", old_relation_path(@feature.relation_id, @feature.version + 1) %>
+ <% end %>