X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/e7ddfe10846f89b5eeec4bf4f4dc03057a744009..7c522a4e024a8763125251f6df6bbcbcc0f0f1a1:/app/views/old_relations/show.html.erb diff --git a/app/views/old_relations/show.html.erb b/app/views/old_relations/show.html.erb index 29d0b0079..42e80e651 100644 --- a/app/views/old_relations/show.html.erb +++ b/app/views/old_relations/show.html.erb @@ -1,6 +1,6 @@ -<% set_title t("browse.relation.title_html", :name => printable_name(@feature)) %> +<% set_title t("browse.relation.title_html", :name => printable_element_name(@feature)) %> -<%= render "sidebar_header", :title => t("browse.relation.title_html", :name => printable_name(@feature)) %> +<%= render "sidebar_header", :title => t("browse.relation.title_html", :name => printable_element_name(@feature)) %> <%= render :partial => "browse/relation", :object => @feature %> @@ -14,12 +14,18 @@
<% if @feature.version > 1 %> - <%= link_to "<< #{t('browse.version')} ##{@feature.version - 1}", old_relation_path(@feature.relation_id, @feature.version - 1) %> + <%= link_to old_relation_path(@feature.relation_id, @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"), 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) %> + <%= link_to old_relation_path(@feature.relation_id, @feature.version + 1), :class => "icon-link" do %> + <%= "#{t('browse.version')} ##{@feature.version + 1}" %> + <%= next_page_svg_tag :height => 11 %> + <% end %> <% end %>