X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/252b9ef08a0b0b7d34eea83149cb1a8ad7af9e34..29e98571454a450f0af1e2649d1688c6f2afffdb:/app/views/changesets/index.html.erb diff --git a/app/views/changesets/index.html.erb b/app/views/changesets/index.html.erb index cedd3e83a..3ead2abda 100644 --- a/app/views/changesets/index.html.erb +++ b/app/views/changesets/index.html.erb @@ -1,17 +1,17 @@ -<% if @edits.present? %> -
    - <%= render :partial => 'changeset', :collection => @edits %> +<% if @changesets.present? %> +
      + <%= render @changesets %>
    -<% if @edits.size == 20 -%> -
    - <%= link_to t('.load_more'), url_for(@params.merge(:max_id => @edits.last.id - 1)), :class => "button load_more" %> +<% if @changesets.size == 20 -%> +
    + <%= link_to t(".load_more"), url_for(@params.merge(:max_id => @changesets.last.id - 1)), :class => "btn btn-primary" %>
    <%= image_tag "searching.gif" %>
    <% end -%> <% elsif params[:bbox] %> -
    <%= t(params[:max_id] ? '.no_more_area' : '.empty_area') %>
    +

    <%= t(params[:max_id] ? ".no_more_area" : ".empty_area") %>

    <% elsif params[:display_name] %> -
    <%= t(params[:max_id] ? '.no_more_user' : '.empty_user') %>
    +

    <%= t(params[:max_id] ? ".no_more_user" : ".empty_user") %>

    <% else %> -
    <%= t(params[:max_id] ? '.no_more' : '.empty') %>
    +

    <%= t(params[:max_id] ? ".no_more" : ".empty") %>

    <% end %>