X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/ebbcf63f0d910458ae255a84de794e3ccede7a7a..48ad9eff45f04b905faa62058ef91d585096ce89:/app/views/trace/view.html.erb?ds=sidebyside diff --git a/app/views/trace/view.html.erb b/app/views/trace/view.html.erb index 1001cadf9..5a7c5bcc6 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_with_index do |tag, index| %> - <%= link_to tag.tag, { :controller => 'trace', :action => 'list', :tag => tag.tag, :id => nil } %><%=', ' if index+1 < @trace.tags.count %> - <% end %> + <%= 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 %> | |
<%= 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 %> - <% if @trace.user == @user %> -<%= button_to t('trace.view.delete_track'), :controller => 'trace', :action => 'delete', :id => @trace.id %> | - <% end %> -
<%= 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 %> | +