X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/5a668bfbe401c9a771cd2adfa0262eb547219ff7..533816a3c2b373dbf1ea67c7071890ee27e18aa9:/app/views/browse/history.html.erb
diff --git a/app/views/browse/history.html.erb b/app/views/browse/history.html.erb
index faa88359e..b557c339b 100644
--- a/app/views/browse/history.html.erb
+++ b/app/views/browse/history.html.erb
@@ -1,14 +1,18 @@
-<% 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))) %>
-
-
- <%= 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 %>
+<%= render :partial => @type, :collection => @feature.send(:"old_#{@type}s").reverse %>
<%= 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 %>