X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/3828fa6f9f6140f25a02589fad7aa9604a7b091c..6027c42ee7b5ac6b36e8a62135d2cf67b3ca8250:/app/views/changeset/list.html.erb diff --git a/app/views/changeset/list.html.erb b/app/views/changeset/list.html.erb index d2112ac73..cedd3e83a 100644 --- a/app/views/changeset/list.html.erb +++ b/app/views/changeset/list.html.erb @@ -1,12 +1,17 @@ -

<%= @title %>

-

<%= @description %>

- -<%= render :partial => 'changeset_paging_nav' %> -<%= render :partial => 'changesets', :locals => { :showusername => !params.has_key?(:display_name) } %> -<%= render :partial => 'changeset_paging_nav' %> - -<%= rss_link_to params.merge({ :format => :rss }) %> - -<% content_for :head do %> -<%= auto_discovery_link_tag :atom, params.merge({ :format => :rss }) %> +<% 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" %>
+
+<% 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(params[:max_id] ? '.no_more' : '.empty') %>
<% end %>