X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ff03138a978406b431da71aba64941d87b509098..060d6086ca8b1d5791c6116484c1267659bee812:/app/views/trace/view.html.erb diff --git a/app/views/trace/view.html.erb b/app/views/trace/view.html.erb index 65957b45d..4ab46bd3e 100644 --- a/app/views/trace/view.html.erb +++ b/app/views/trace/view.html.erb @@ -1,4 +1,4 @@ -

<%= h(@title) %>

+

<%= t 'trace.view.heading', :name => h(@trace.name) %>

<% if @trace.inserted %> @@ -35,12 +35,10 @@ <%= 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 %>