X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/9e504a0b33032635c3dc5801b22ca3e7566d6b0b..d36fab2913d10bef4eae2cee7c34875f20311af9:/app/views/trace/view.html.erb diff --git a/app/views/trace/view.html.erb b/app/views/trace/view.html.erb index 048d92d35..73638cb3d 100644 --- a/app/views/trace/view.html.erb +++ b/app/views/trace/view.html.erb @@ -1,10 +1,12 @@ -
<%= t'trace.view.uploaded' %> | -<%= l @trace.timestamp %> | +<%= l @trace.timestamp, :format => :friendly %> |
<%= 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}" %> | +
<%= 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 %>