% if @edits.present? %>
  
    <%= render :partial => 'changeset', :collection => @edits %>
  
<% if @edits.size == 20 -%>
    <%= link_to t('changeset.list.load_more'), url_for(params.merge(:max_id => @edits.last.id - 1)), :class => "button load_more" %>
    <%= image_tag "searching.gif", :class => "loader", :style => "display: none;" %>
  
<% end -%>
<% elsif params[:bbox] %>
  <%= t(params[:max_id] ? 'changeset.list.no_more_area' : 'changeset.list.empty_area') %>
<% elsif params[:display_name] %>
  <%= t(params[:max_id] ? 'changeset.list.no_more_user' : 'changeset.list.empty_user') %>
<% else %>
  <%= t(params[:max_id] ? 'changeset.list.no_more' : 'changeset.list.empty') %>
<% end %>