<% cl = cycle('table0', 'table1') %>
  
    <% if trace.inserted %>
       
    <% else %>
      PENDING
    <% end %>
   | 
  <%= link_to trace.name, {:controller => 'trace', :action => 'view', :display_name => trace.user.display_name, :id => trace.id} %>
     ... 
      <% if trace.inserted %> 
        (<%= trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/,'\1,') %> points)
      <% end %> 
      ... <%= time_ago_in_words( trace.timestamp ) %>  ago
      <%= link_to 'more', {:controller => 'trace', :action => 'view', :display_name => trace.user.display_name, :id => trace.id}, {:title => 'View Trace Details'} %> /
      <%= link_to_if trace.inserted?, 'map', {:controller => 'site', :action => 'index', :lat => trace.latitude, :lon => trace.longitude, :zoom => 14}, {:title => 'View Map'} %> /
      <%= link_to 'edit', {:controller => 'site', :action => 'edit', :gpx => trace.id }, {:title => 'Edit Map'} %>
      <% if trace.public? %>
        PUBLIC
      <% else %>
        PRIVATE
      <% end %>
       
      <%= h(trace.description) %>
     
    by <%= link_to h(trace.user.display_name), {:controller => 'user', :action => 'view', :display_name => trace.user.display_name} %>
    <% if !trace.tags.empty? %>
      in 
      <% trace.tags.each do |tag| %>
        <%= link_to_tag tag.tag %>
      <% end %>
    <% end %>
   |