X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/fb1467a94487cfdfcb19e4f88e05be7aa88096f0..08b71b48e12ed1d34e8a807d913dbf9714635fc6:/app/views/trace/_trace.rhtml diff --git a/app/views/trace/_trace.rhtml b/app/views/trace/_trace.rhtml index 3149e4c0a..eb8558510 100644 --- a/app/views/trace/_trace.rhtml +++ b/app/views/trace/_trace.rhtml @@ -1 +1,30 @@ -bleh + + <% 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_if trace.inserted?, 'edit', {:controller => 'site', :action => 'edit', :lat => trace.latitude, :lon => trace.longitude, :zoom => 14}, {:title => 'Edit Map'} %> +
+ <%= escape_once(trace.description) %> +
+ by <%= link_to trace.user.display_name, {:controller => 'user', :action => 'view', :display_name => trace.user.display_name} %> + in + <% if trace.tags %> + <% trace.tags.each do |tag| %> + <%= link_to_tag tag.tag %> + <% end %> + <% end %> + +