X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/4cc2b63d5c38158e6beb114147be723425ec412e..60f2074baca1b36bf02b02be976a2527d60c5fef:/app/views/changeset/list.html.erb diff --git a/app/views/changeset/list.html.erb b/app/views/changeset/list.html.erb index 965b66484..c44891251 100644 --- a/app/views/changeset/list.html.erb +++ b/app/views/changeset/list.html.erb @@ -1,31 +1,17 @@ -<% content_for :head do -%> - <%= javascript_include_tag "changeset" %> - - <% unless params[:friends] or params[:nearby] -%> - <%= 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 -%> - -<% content_for :sidebar do %> -

<%= @heading %>

- - <% if @edits.size > 0 %> -
    - <%= render :partial => 'changeset', - :collection => @edits %> -
- -
-
- <%= link_to t('geocoder.results.more_results'), '#', :class => "button" %> -
- <%= image_tag "searching.gif", :class => ["search_searching", "hidden"] %> -
- <% elsif @user and @user.display_name == params[:display_name] %> -

<%= t('changeset.list.empty_user_html') %>

- <% else %> -

<%= t('changeset.list.empty_anon_html') %>

- <% 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 %> - -<%= render :template => 'layouts/map' %>