X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/dd302f4f2c56d1e9f1a2e39a54670f6f5a9bbd34..9508368d37fe6e9d54a2d51ed8d886261ec4a9e9:/app/views/changesets/index.html.erb
diff --git a/app/views/changesets/index.html.erb b/app/views/changesets/index.html.erb
index cedd3e83a..1e3daa081 100644
--- a/app/views/changesets/index.html.erb
+++ b/app/views/changesets/index.html.erb
@@ -1,17 +1,17 @@
-<% if @edits.present? %>
+<% if @changesets.present? %>
- <%= render :partial => 'changeset', :collection => @edits %>
+ <%= render @changesets %>
-<% if @edits.size == 20 -%>
+<% if @changesets.size == 20 -%>
- <%= link_to t('.load_more'), url_for(@params.merge(:max_id => @edits.last.id - 1)), :class => "button load_more" %>
+ <%= link_to t(".load_more"), url_for(@params.merge(:max_id => @changesets.last.id - 1)), :class => "button load_more" %>
<%= 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 %>