]> git.openstreetmap.org Git - rails.git/blob - app/views/changeset/list.html.erb
Add coordinate detail to node pages
[rails.git] / app / views / changeset / list.html.erb
1 <% if @edits.present? %>
2   <ol class="changesets">
3     <%= render :partial => 'changeset', :collection => @edits %>
4   </ol>
5   <div class="changeset_more">
6     <%= link_to t('changeset.list.load_more'), url_for(params.merge(:max_id => @edits.last.id - 1)), :class => "button load_more" %>
7     <%= image_tag "searching.gif", :class => "loader", :style => "display: none;" %>
8   </div>
9 <% elsif params[:bbox] %>
10   <div class="inner22"><%= t(params[:max_id] ? 'changeset.list.no_more_area' : 'changeset.list.empty_area') %></div>
11 <% elsif params[:display_name] %>
12   <div class="inner22"><%= t(params[:max_id] ? 'changeset.list.no_more_user' : 'changeset.list.empty_user') %></div>
13 <% else %>
14   <div class="inner22"><%= t(params[:max_id] ? 'changeset.list.no_more' : 'changeset.list.empty') %></div>
15 <% end %>