X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/4557654ba63392f0db4aa5c002be692395eb8cee..9b36021ec5eabeca8db735cf80c5876d2d31338d:/app/views/changeset/list.html.erb diff --git a/app/views/changeset/list.html.erb b/app/views/changeset/list.html.erb index fc135c6ca..cedd3e83a 100644 --- a/app/views/changeset/list.html.erb +++ b/app/views/changeset/list.html.erb @@ -1,27 +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 -%> -<% end -%> - -

<%= @heading %>

- -<% if @edits.size > 0 %> +<% if @edits.present? %>
    - <%= render :partial => 'changeset', - :collection => @edits %> + <%= render :partial => 'changeset', :collection => @edits %>
- -
-
- <%= link_to t('geocoder.results.more_results'), '#', :class => "button" %> -
- <%= image_tag "searching.gif", :class => ["search_searching", "hidden"] %> +<% 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" %>
-<% 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 %>