X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/00123f05ba0b0c7a41ae3888cd33b68f13e1d662..c3498b490b7e695f0be0898e3df76961bda4738e:/app/views/old_relations/show.html.erb?ds=sidebyside diff --git a/app/views/old_relations/show.html.erb b/app/views/old_relations/show.html.erb index 360011ca2..29d0b0079 100644 --- a/app/views/old_relations/show.html.erb +++ b/app/views/old_relations/show.html.erb @@ -3,3 +3,23 @@ <%= render "sidebar_header", :title => t("browse.relation.title_html", :name => printable_name(@feature)) %> <%= 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.view_details"), relation_path(@feature.relation_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 %> +