X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/9e504a0b33032635c3dc5801b22ca3e7566d6b0b..2541ad0f099a934b8ad3c2bdc085c89919407fa0:/app/views/trace/view.html.erb diff --git a/app/views/trace/view.html.erb b/app/views/trace/view.html.erb index 048d92d35..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 %> @@ -36,23 +36,22 @@ <%= t'trace.view.tags' %> <% unless @trace.tags.empty? %> - <% @trace.tags.each do |tag| %> - <%= link_to tag.tag, { :controller => 'trace', :action => 'list', :tag => tag.tag, :id => nil } %> - <% end %> + <%= @trace.tags.collect { |tag| link_to tag.tag, { :controller => 'trace', :action => 'list', :tag => tag.tag, :id => nil } }.join(", ") %> <% else %> <%= t'trace.view.none' %> <% end %> + + <%= t'trace.view.visibility' %> + <%= t"trace.visibility.#{@trace.visibility}" %> +

- <% unless @trace.public? %> - - <% end %> <% if @trace.user == @user %> <% end %>
<%= button_to t('trace.view.make_public'), :controller => 'trace', :action => 'make_public', :id => @trace.id %><%= button_to t('trace.view.edit_track'), :controller => 'trace', :action => 'edit', :id => @trace.id %>