X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/783b5e3729228908d7404ae7404af1023501a906..50cfc0a95cb5cedda0f8043f754a26afafe0a9db:/app/views/traces/_trace.html.erb diff --git a/app/views/traces/_trace.html.erb b/app/views/traces/_trace.html.erb index ceeb4d88d..f60eea7f1 100644 --- a/app/views/traces/_trace.html.erb +++ b/app/views/traces/_trace.html.erb @@ -1,30 +1,61 @@
+ <% if trace.tags.empty? %>
+ <%= t ".details_without_tags_html", :time_ago => friendly_date_ago(trace.timestamp),
+ :user => link_to(trace.user.display_name, trace.user) %>
+ <% else %>
+ <%= t ".details_with_tags_html", :time_ago => friendly_date_ago(trace.timestamp),
+ :user => link_to(trace.user.display_name, trace.user),
+ :tags => safe_join(trace.tags.collect { |tag| link_to_tag tag.tag }, ", ") %>
<% 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) %>
-
+
<%= 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(", ")) %>
+