X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/1977e66ace0751b8b4fdf3b55bde367ec33e7c57..cb7b79a58f0337ab28b41ed5105215de302d3f73:/app/views/traces/_trace.html.erb
diff --git a/app/views/traces/_trace.html.erb b/app/views/traces/_trace.html.erb
index ff15836b7..44de2ef06 100644
--- a/app/views/traces/_trace.html.erb
+++ b/app/views/traces/_trace.html.erb
@@ -8,28 +8,50 @@
<% 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 %>)
- <% 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") } %>
+ |
+
+ -
+ <%= link_to trace.name, :controller => "traces", :action => "show", :display_name => trace.user.display_name, :id => trace.id %>
+
- <% badge_class = case trace.visibility
- when "public", "identifiable" then "success"
- else "danger"
- end %>
- <%= t("." + trace.visibility) %>
+ <% if trace.inserted? %>
+ -
+ <%= t ".count_points", :count => trace.size %>
+
+ <% end %>
-
+ -
+ <% badge_class = case trace.visibility
+ when "public", "identifiable" then "success"
+ else "danger"
+ end %>
+ <%= t(".#{trace.visibility}") %>
+
+
+
+
+ <%= time_ago_in_words(trace.timestamp, :scope => :"datetime.distance_in_words_ago") %>
+
+ <%= 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 }, ", ") %>
+ <% end %>
+
+
<%= trace.description %>
-
- <%= 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 }, ", ") %>
+
+ |
+
+ <% if trace.inserted? %>
+
+ -
+ <%= link_to t(".view_map"), { :controller => "site", :action => "index", :mlat => trace.latitude, :mlon => trace.longitude, :anchor => "map=14/#{trace.latitude}/#{trace.longitude}" } %>
+
+ -
+ <%= link_to t(".edit_map"), { :controller => "site", :action => "edit", :gpx => trace.id } %>
+
+
<% end %>
|