X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/b685f6eb2edb5ee7171bc000853dd5980c6bf68b..d430cfb627fb8f329d29d2a12a20b5258e6ae57f:/app/views/old_ways/show.html.erb diff --git a/app/views/old_ways/show.html.erb b/app/views/old_ways/show.html.erb index e9976dd78..d128cd2ad 100644 --- a/app/views/old_ways/show.html.erb +++ b/app/views/old_ways/show.html.erb @@ -14,12 +14,18 @@
<% if @feature.version > 1 %> - <%= link_to "<< #{t('browse.version')} ##{@feature.version - 1}", old_way_path(@feature.way_id, @feature.version - 1) %> + <%= link_to old_way_path(@feature.way_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"), way_history_path(@feature.way_id) %> <% if @feature.version < @feature.current_way.version %> · - <%= link_to "#{t('browse.version')} ##{@feature.version + 1} >>", old_way_path(@feature.way_id, @feature.version + 1) %> + <%= link_to old_way_path(@feature.way_id, @feature.version + 1), :class => "icon-link" do %> + <%= "#{t('browse.version')} ##{@feature.version + 1}" %> + <%= next_page_svg_tag :height => 11 %> + <% end %> <% end %>