-<% set_title t("browse.relation.title_html", :name => printable_name(@feature)) %>
+<% set_title t("browse.relation.title_html", :name => printable_element_name(@feature)) %>
-<%= render "sidebar_header", :title => t("browse.relation.title_html", :name => printable_name(@feature)) %>
+<%= render "sidebar_header", :title => t("browse.relation.title_html", :name => printable_element_name(@feature)) %>
<%= render :partial => "browse/relation", :object => @feature %>
<div class='secondary-actions'>
- <%= link_to t("browse.download_xml"), relation_version_path(*@feature.id) %>
+ <% 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) %>
+</div>
+
+<div class='secondary-actions'>
+ <% if @feature.version > 1 %>
+ <%= link_to old_relation_path(@feature.relation_id, @feature.version - 1), :class => "icon-link" do %>
+ <%= previous_page_svg_tag :height => 11 %>
+ <%= "#{t('browse.version')} ##{@feature.version - 1}" %>
+ <% end %>
+ ·
+ <% end %>
+ <%= link_to t("browse.view_history"), relation_history_path(@feature.relation_id) %>
+ <% if @feature.version < @feature.current_relation.version %>
+ ·
+ <%= link_to old_relation_path(@feature.relation_id, @feature.version + 1), :class => "icon-link" do %>
+ <%= "#{t('browse.version')} ##{@feature.version + 1}" %>
+ <%= next_page_svg_tag :height => 11 %>
+ <% end %>
+ <% end %>
</div>