<% cl = cycle('table0', 'table1') %>
<% if trace.inserted %>
<% end %>
|
<%= link_to trace.name, {:controller => 'trace', :action => 'view', :id => trace.id} %>
...
<% if trace.inserted %>
(<%= trace.size %> points)
<% end %>
... <%= time_ago_in_words( trace.timestamp ) %> ago
more /
map
<%= trace.description %>
by <%= link_to trace.user.display_name, {:controller => 'trace', :action => 'list', :user => trace.user.display_name} %>
in
<% if trace.tags %>
<% trace.tags.each do |tag| %>
<%= link_to tag.tag, :controller => 'trace', :action => 'bytag', :tag => tag.tag %>
<% end %>
<% end %>
|