X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/083500f056f5b995f1979f88b37793046d9e4d37..e2db4098722ef4460aa455ceaf8d54f5614af557:/app/views/traces/index.html.erb diff --git a/app/views/traces/index.html.erb b/app/views/traces/index.html.erb index 0fcaeb6f7..b38436c0a 100644 --- a/app/views/traces/index.html.erb +++ b/app/views/traces/index.html.erb @@ -1,45 +1,37 @@ <% content_for :heading do %> -

<%= h(@title) %>

+

<%= @title %>

<% end %> <% content_for :auto_discovery_link_tag do %> -<%= auto_discovery_link_tag :rss, :action => 'georss', :display_name => @display_name, :tag => @tag %> +<%= auto_discovery_link_tag :rss, :action => "georss", :display_name => @display_name, :tag => @tag %> <% end %> <% if @traces.size > 0 %> - <%= render :partial => 'trace_paging_nav' %> + <%= render "trace_paging_nav", :page => @page, :page_size => @page_size, :traces => @traces, :params => @params %> - - - - - - - +
- <%= render :partial => 'trace', :collection => @traces unless @traces.nil? %> + <%= render @traces %>
- <%= render :partial => 'trace_paging_nav' %> + <%= render "trace_paging_nav", :page => @page, :page_size => @page_size, :traces => @traces, :params => @params %> <% else %> -

<%= t '.empty_html', :upload_link => new_trace_path %>

+

<%= t ".empty_html", :upload_link => new_trace_path %>

<% end %> - -<%= render :partial => 'trace_optionals' %>