]> git.openstreetmap.org Git - rails.git/blob - app/views/traces/_trace.html.erb
Merge remote-tracking branch 'upstream/pull/2280'
[rails.git] / app / views / traces / _trace.html.erb
1 <tr>
2   <% cl = cycle("table0", "table1") %>
3   <td class="<%= cl %>">
4     <% if Settings.status != "gpx_offline" %>
5       <% if trace.inserted %>
6         <a href="<%= url_for :controller => "traces", :action => "show", :id => trace.id, :display_name => trace.user.display_name %>"><img src="<%= url_for :controller => "traces", :action => "icon", :id => trace.id, :display_name => trace.user.display_name %>" border="0" alt="" /></a>
7       <% else %>
8         <span class="trace_pending"><%= t ".pending" %></span>
9       <% end %>
10     <% end %>
11   </td>
12   <td class="<%= cl %>"><%= link_to trace.name, :controller => "traces", :action => "show", :display_name => trace.user.display_name, :id => trace.id %>
13     <span class="trace_summary" title="<%= trace.timestamp %>"> ...
14       <% if trace.inserted %>
15         (<%= t ".count_points", :count => trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/, '\1,') %>)
16       <% end %>
17       ... <%= time_ago_in_words(trace.timestamp, :scope => :'datetime.distance_in_words_ago') %></span>
18       <%= link_to_if trace.inserted?, t(".map"), { :controller => "site", :action => "index", :mlat => trace.latitude, :mlon => trace.longitude, :anchor => "map=14/#{trace.latitude}/#{trace.longitude}" }, { :title => t(".view_map") } %> /
19       <%= link_to t(".edit"), { :controller => "site", :action => "edit", :gpx => trace.id }, { :title => t(".edit_map") } %>
20       <span class="trace_<%= trace.visibility %>"><%= t("." + trace.visibility) %></span>
21       <br />
22       <%= trace.description %>
23     <br />
24     <%= t ".by" %> <%= link_to h(trace.user.display_name), user_path(trace.user) %>
25     <% if !trace.tags.empty? %>
26       <%= t ".in" %>
27       <%= raw(trace.tags.collect { |tag| link_to_tag tag.tag }.join(", ")) %>
28     <% end %>
29   </td>
30 </tr>