X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/edaddbedaec78a252e988e2271962407e64483fd..6b236ec95bc8072b0a839fecabb1412b76b8a7e2:/app/views/changeset/list.html.erb diff --git a/app/views/changeset/list.html.erb b/app/views/changeset/list.html.erb index c3d88bf6e..68bdf1e23 100644 --- a/app/views/changeset/list.html.erb +++ b/app/views/changeset/list.html.erb @@ -1,12 +1,15 @@ -

<%= @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 => 'rxml' }) %> - -<% content_for :head do %> -<%= auto_discovery_link_tag :atom, params.merge({ :format => 'rxml' }) %> +<% if @edits.present? %> +
    + <%= render :partial => 'changeset', :collection => @edits %> +
+
+ <%= 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;" %> +
+<% 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 %>