X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/29aac6e14964d612ee6a06998ae61bc8923f5946..2168ad210840bf3d0df0b80dfceae92a26e6c970:/app/views/traces/_trace.html.erb
diff --git a/app/views/traces/_trace.html.erb b/app/views/traces/_trace.html.erb
index 8b754a591..c2f4183eb 100644
--- a/app/views/traces/_trace.html.erb
+++ b/app/views/traces/_trace.html.erb
@@ -1,6 +1,5 @@
- <% cl = cycle("table0", "table1") %>
-
+ |
<% if Settings.status != "gpx_offline" %>
<% 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="" />
@@ -9,8 +8,8 @@
<% end %>
<% end %>
|
- <%= link_to trace.name, :controller => "traces", :action => "show", :display_name => trace.user.display_name, :id => trace.id %>
- ...
+ | <%= 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 %>)
<% end %>
@@ -22,15 +21,15 @@
when "public", "identifiable" then "success"
else "danger"
end %>
- <%= t("." + trace.visibility) %>
+ <%= t(".#{trace.visibility}") %>
<%= trace.description %>
- <%= t ".by" %> <%= link_to h(trace.user.display_name), user_path(trace.user) %>
+ <%= t ".by" %> <%= link_to 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 %>
|