32 lines
1.2 KiB
Text
32 lines
1.2 KiB
Text
<div class='secondary-actions'>
|
|
<%= link_to t("browse.view_details"), :controller => @type.pluralize, :action => :show %>
|
|
<% if !@feature.redacted? %>
|
|
·
|
|
<%= link_to t("browse.download_xml"), :controller => "api/old_#{@type.pluralize}", :action => :show %>
|
|
<% elsif current_user&.moderator? %>
|
|
·
|
|
<% if !params[:show_redactions] %>
|
|
<%= link_to t(".view_redacted_data"), :params => { :show_redactions => true } %>
|
|
<% else %>
|
|
<%= link_to t(".view_redaction_message") %>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|
|
|
|
<div class='secondary-actions'>
|
|
<% if @feature.version > 1 %>
|
|
<%= link_to({ :version => @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"), :action => :index %>
|
|
<% unless @feature.latest_version? %>
|
|
·
|
|
<%= link_to({ :version => @feature.version + 1 }, { :class => "icon-link" }) do %>
|
|
<%= "#{t('browse.version')} ##{@feature.version + 1}" %>
|
|
<%= next_page_svg_tag :height => 11 %>
|
|
<% end %>
|
|
<% end %>
|
|
</div>
|