X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/6b6245365afe47b02c0f686edc8d6d125d1418bc..06122fc0900cb2d58d3401cfab9aa0c521eef374:/app/views/traces/_trace.html.erb
diff --git a/app/views/traces/_trace.html.erb b/app/views/traces/_trace.html.erb
index 1fde78790..47860d50d 100644
--- a/app/views/traces/_trace.html.erb
+++ b/app/views/traces/_trace.html.erb
@@ -5,7 +5,7 @@
<% 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 %>
@@ -17,14 +17,20 @@
... <%= 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 %>
<%= t ".by" %> <%= link_to h(trace.user.display_name), user_path(trace.user) %>
<% if !trace.tags.empty? %>
<%= t ".in" %>
- <%= raw(trace.tags.collect { |tag| link_to_tag tag.tag }.join(", ")) %>
+ <%= safe_join(trace.tags.collect { |tag| link_to_tag tag.tag }, ", ") %>
<% end %>