X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/d5efa4c357c1f39181f9af96024eaacbb6bd328b..d112c01a1af65962e061ca43207a7289477562dc:/app/views/browse/history.html.erb diff --git a/app/views/browse/history.html.erb b/app/views/browse/history.html.erb index fd1f5ffc5..d257d25a2 100644 --- a/app/views/browse/history.html.erb +++ b/app/views/browse/history.html.erb @@ -1,11 +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))) %> -<%= 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 %> +<%= render :partial => "browse/#{@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.download_xml"), :controller => "api/old_#{@type.pluralize}", :action => "history" %> · - <%= link_to(t("browse.view_details"), :action => @type) %> + <%= link_to t("browse.view_details"), :controller => "browse", :action => @type %> + <% if params[:show_redactions] %> + · + <%= link_to t("browse.view_history") %> + <% elsif current_user&.moderator? %> + · + <%= link_to t("browse.view_unredacted_history"), :params => { :show_redactions => true } %> + <% end %>