X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/21ba79b86112cf918920e03f925cb5814066f898..533816a3c2b373dbf1ea67c7071890ee27e18aa9:/app/views/browse/history.html.erb diff --git a/app/views/browse/history.html.erb b/app/views/browse/history.html.erb index fd1f5ffc5..b557c339b 100644 --- a/app/views/browse/history.html.erb +++ b/app/views/browse/history.html.erb @@ -1,6 +1,6 @@ -<% set_title(t("browse.#{@type}.history_title_html", :name => printable_name(@feature))) %> +<% set_title(t("browse.#{@type}.history_title_html", :name => printable_element_name(@feature))) %> -<%= render "sidebar_header", :title => t("browse.#{@type}.history_title_html", :name => printable_name(@feature)) %> +<%= render "sidebar_header", :title => t("browse.#{@type}.history_title_html", :name => printable_element_name(@feature)) %> <%= render :partial => @type, :collection => @feature.send(:"old_#{@type}s").reverse %> @@ -8,4 +8,11 @@ <%= link_to(t("browse.download_xml"), :controller => "api/old_#{@type.pluralize}", :action => "history") %> · <%= link_to(t("browse.view_details"), :action => @type) %> + <% if params[:show_redactions] %> + · + <%= link_to(t("browse.view_history"), :action => "#{@type}_history") %> + <% elsif current_user&.moderator? %> + · + <%= link_to(t("browse.view_unredacted_history"), :action => "#{@type}_history", :params => { :show_redactions => true }) %> + <% end %>