- <td class="<%= cl %>"><%= link_to trace.name, { :controller => 'traces', :action => 'show', :display_name => trace.user.display_name, :id => trace.id } %>
- <span class="trace_summary" title="<%= trace.timestamp %>"> ...
- <% if trace.inserted %>
- (<%= t '.count_points', :count => trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/,'\1,') %>)
+ <td>
+ <ul class="list-inline mb-0">
+ <li class="list-inline-item">
+ <%= link_to trace.name, :controller => "traces", :action => "show", :display_name => trace.user.display_name, :id => trace.id %>
+ </li>
+
+ <% if trace.inserted? %>
+ <li class="list-inline-item">
+ <%= t ".count_points", :count => trace.size %>
+ </li>
+ <% end %>
+
+ <li class="list-inline-item">
+ <% badge_class = case trace.visibility
+ when "public", "identifiable" then "success"
+ else "danger"
+ end %>
+ <span class="badge badge-<%= badge_class %> text-white"><%= t(".#{trace.visibility}") %></span>
+ </li>
+ </ul>
+ <p class="text-muted mb-0">
+ <span title="<%= trace.timestamp %>">
+ <%= time_ago_in_words(trace.timestamp, :scope => :'datetime.distance_in_words_ago') %>
+ </span>
+ <%= t ".by" %> <%= link_to trace.user.display_name, user_path(trace.user) %>
+ <% if !trace.tags.empty? %>
+ <%= t ".in" %>
+ <%= safe_join(trace.tags.collect { |tag| link_to_tag tag.tag }, ", ") %>