X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/3d7eb387a7c3573f1a1d17df00adcaa1fb9b9fa5..f3bd3834e04559af3d79b48f675b24f6190abb6b:/app/views/changeset/list.html.erb
diff --git a/app/views/changeset/list.html.erb b/app/views/changeset/list.html.erb
index 8ecdda946..cedd3e83a 100644
--- a/app/views/changeset/list.html.erb
+++ b/app/views/changeset/list.html.erb
@@ -1,35 +1,17 @@
-<% content_for :head do -%>
- <%= javascript_include_tag "changeset" %>
-<% end -%>
-
-<% content_for :heading do %>
-
-
- <%= render :partial => 'changesets', :locals => { :showusername => !params.has_key?(:display_name) } %>
+<% if @edits.present? %>
+
+ <%= render :partial => 'changeset', :collection => @edits %>
+
+<% if @edits.size == 20 -%>
+
+ <%= link_to t('.load_more'), url_for(@params.merge(:max_id => @edits.last.id - 1)), :class => "button load_more" %>
+
<%= image_tag "searching.gif" %>
- <%= render :partial => 'changeset_paging_nav' %>
-<% elsif @user and @user.display_name == params[:display_name] %>
-
<%= t('changeset.list.empty_user_html') %>
+<% end -%>
+<% elsif params[:bbox] %>
+
<%= t(params[:max_id] ? '.no_more_area' : '.empty_area') %>
+<% elsif params[:display_name] %>
+
<%= t(params[:max_id] ? '.no_more_user' : '.empty_user') %>
<% else %>
-
<%= t('changeset.list.empty_anon_html') %>
+
<%= t(params[:max_id] ? '.no_more' : '.empty') %>
<% end %>
-
-<% unless params[:friends] or params[:nearby] -%>
- <% content_for :head do -%>
- <%= auto_discovery_link_tag :atom, params.merge({ :page => nil, :action => :feed }) %>
- <% end -%>
-<% end -%>
\ No newline at end of file