X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/420a7289a0b08eee091f6650c2e83166df3fbe69..697e36f364506037efb198f454226ca1eb956bed:/app/views/traces/index.html.erb?ds=sidebyside diff --git a/app/views/traces/index.html.erb b/app/views/traces/index.html.erb index 0fcaeb6f7..fa69c48a2 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 unless @traces.nil? %>
- <%= 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' %>