X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/dfadcc797cead0cc1877dbc211b7a081bf8e769c..6674873478c9fe221d2fd78f76cabc6d4b03c0aa:/app/views/trace/view.html.erb
diff --git a/app/views/trace/view.html.erb b/app/views/trace/view.html.erb
index 80733844d..47a9f8ad2 100644
--- a/app/views/trace/view.html.erb
+++ b/app/views/trace/view.html.erb
@@ -1,4 +1,4 @@
-
<%= t 'trace.view.heading', :name => @trace.name %>
+<%= t 'trace.view.heading', :name => h(@trace.name) %>
<% if @trace.inserted %>
@@ -35,24 +35,23 @@
<%= t'trace.view.tags' %> |
- <% if @trace.tags %>
- <% @trace.tags.each do |tag| %>
- <%= link_to tag.tag, { :controller => 'trace', :action => 'list', :tag => tag.tag, :id => nil } %>
- <% end %>
+ <% unless @trace.tags.empty? %>
+ <%= @trace.tags.collect { |tag| link_to tag.tag, { :controller => 'trace', :action => 'list', :tag => tag.tag, :id => nil } }.join(", ") %>
<% else %>
- <%= t'trace.view.none' %>
+ <%= t'trace.view.none' %>
<% end %>
|
+
+ <%= t'trace.view.visibility' %> |
+ <%= t"trace.visibility.#{@trace.visibility}" %> |
+
- <% unless @trace.public? %>
- <%= button_to t('trace.view.make_public'), :controller => 'trace', :action => 'make_public', :id => @trace.id %> |
- <% end %>
<% if @trace.user == @user %>
<%= button_to t('trace.view.edit_track'), :controller => 'trace', :action => 'edit', :id => @trace.id %> |
<% end %>