X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/dd7ef37ec023646120358a0a6a7959a392b79f1c..23ffdadb565be5ccc4ae9fad9647bdf0fa9b8683:/app/views/trace/view.html.erb
diff --git a/app/views/trace/view.html.erb b/app/views/trace/view.html.erb
index 0d9b6213f..cbe6c1628 100644
--- a/app/views/trace/view.html.erb
+++ b/app/views/trace/view.html.erb
@@ -1,4 +1,6 @@
-
<%= t'trace.view.uploaded' %> |
<%= l @trace.timestamp, :format => :friendly %> |
@@ -38,7 +40,7 @@
<%= t'trace.view.tags' %> |
<% unless @trace.tags.empty? %>
- <%= @trace.tags.collect { |tag| link_to tag.tag, { :controller => 'trace', :action => 'list', :tag => tag.tag, :id => nil } }.join(", ") %>
+ <%= raw(@trace.tags.collect { |tag| link_to tag.tag, { :controller => 'trace', :action => 'list', :tag => tag.tag, :id => nil } }.join(", ")) %>
<% else %>
<%= t'trace.view.none' %>
<% end %>
@@ -52,11 +54,9 @@
-<% if_user(@trace.user) do %>
-
-
- <%= button_to t('trace.view.edit_track'), :controller => 'trace', :action => 'edit', :id => @trace.id %> |
- <%= button_to t('trace.view.delete_track'), :controller => 'trace', :action => 'delete', :id => @trace.id %> |
-
-
+<%= if_user(@trace.user) do %>
+
+ <%= button_to t('trace.view.edit_track'), :controller => 'trace', :action => 'edit', :id => @trace.id %>
+ <%= button_to t('trace.view.delete_track'), :controller => 'trace', :action => 'delete', :id => @trace.id %>
+
<% end %>
|