X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/e731dd71a77ad4ad1e9db22535e89444bb98e5d9..1c5642637a87ab250d2a1204cc83a578e7aa29f1:/app/views/traces/_trace.html.erb
diff --git a/app/views/traces/_trace.html.erb b/app/views/traces/_trace.html.erb
index ceeb4d88d..8b754a591 100644
--- a/app/views/traces/_trace.html.erb
+++ b/app/views/traces/_trace.html.erb
@@ -5,19 +5,25 @@
<% if trace.inserted %>
"show", :id => trace.id, :display_name => trace.user.display_name %>"> "icon", :id => trace.id, :display_name => trace.user.display_name %>" border="0" alt="" />
<% else %>
- <%= t ".pending" %>
+ <%= t ".pending" %>
<% end %>
<% end %>
<%= link_to trace.name, :controller => "traces", :action => "show", :display_name => trace.user.display_name, :id => trace.id %>
...
<% if trace.inserted %>
- (<%= t ".count_points", :count => trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/, '\1,') %>)
+ (<%= t ".count_points", :count => trace.size %>)
<% end %>
... <%= time_ago_in_words(trace.timestamp, :scope => :'datetime.distance_in_words_ago') %>
<%= 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") } %> /
<%= link_to t(".edit"), { :controller => "site", :action => "edit", :gpx => trace.id }, { :title => t(".edit_map") } %>
- <%= t("." + trace.visibility) %>
+
+ <% badge_class = case trace.visibility
+ when "public", "identifiable" then "success"
+ else "danger"
+ end %>
+ <%= t("." + trace.visibility) %>
+
<%= trace.description %>
|