X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ea6926d3de0e0f12f70f0c993261f0dae54aa482..baaacfc7c08d8c5df5e67f4fafdbddf4e440c39d:/app/views/changeset/list.html.erb diff --git a/app/views/changeset/list.html.erb b/app/views/changeset/list.html.erb index 19707cd3f..b6200a8ba 100644 --- a/app/views/changeset/list.html.erb +++ b/app/views/changeset/list.html.erb @@ -1,32 +1,13 @@ -<% content_for :head do -%> - <%= javascript_include_tag "index" %> - <%= javascript_include_tag "changeset" %> - - <% unless params[:friends] or params[:nearby] -%> - <%= auto_discovery_link_tag :atom, params.merge({ :page => nil, :action => :feed }) %> - <% end -%> -<% 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 %> +<% 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[:max_id] %> +

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

+<% else %> +

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

<% end %> - -<%= render :template => 'layouts/map' %>