X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/e660e609661edadc1ed5ad49d6e83e936b2f91cd..56316e17ada73e35b7ddf9782619823788a92d71:/app/views/changeset/list.html.erb
diff --git a/app/views/changeset/list.html.erb b/app/views/changeset/list.html.erb
index bf8adbe20..36ec59379 100644
--- a/app/views/changeset/list.html.erb
+++ b/app/views/changeset/list.html.erb
@@ -1,19 +1,17 @@
-
<%= @heading %>
-<%= raw(@description) %>
-
-<%= render :partial => 'changeset_paging_nav' %>
-
-
- <%= render :partial => 'map' %>
- <%= render :partial => 'changesets', :locals => { :showusername => !params.has_key?(:display_name) } %>
-
-
-<%= render :partial => 'changeset_paging_nav' %>
-
-<% unless params[:friends] or params[:nearby] -%>
-<%= atom_link_to params.merge({ :page => nil, :action => :feed }) %>
-
-<% content_for :head do -%>
-<%= auto_discovery_link_tag :atom, params.merge({ :page => nil, :action => :feed }) %>
-<% end -%>
+<% 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 %>