<%= render :partial => "browse/relation", :object => @feature %>
-<% unless @feature.redacted? %>
- <div class='secondary-actions'>
+<div class='secondary-actions'>
+ <% unless @feature.redacted? %>
<%= link_to t("browse.download_xml"), relation_version_path(*@feature.id) %>
- </div>
-<% end %>
+ ·
+ <% end %>
+ <%= link_to t("browse.view_details"), relation_path(@feature.relation_id) %>
+</div>
+
+<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) %>
+ ·
+ <% 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 %>
+</div>