X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/edaddbedaec78a252e988e2271962407e64483fd..bb83f28a5e9326be55a431d5c3f7b4ae7529a942:/app/views/trace/view.html.erb diff --git a/app/views/trace/view.html.erb b/app/views/trace/view.html.erb index 381a2fc97..0d9b6213f 100644 --- a/app/views/trace/view.html.erb +++ b/app/views/trace/view.html.erb @@ -1,10 +1,12 @@ -

<%= h(@title) %>

+

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

+<% if STATUS != :gpx_offline %> <% if @trace.inserted %> <% else %> <%= t'trace.view.pending' %> <% end %> +<% end %> @@ -13,7 +15,7 @@ - + <% if @trace.inserted? %> @@ -35,29 +37,26 @@ + + + +
<%= t'trace.view.uploaded' %><%= @trace.timestamp %><%= l @trace.timestamp, :format => :friendly %>
<%= 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? %> - - <% end %> - <% if @trace.user == @user %> - - <% 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 %><%= button_to t('trace.view.delete_track'), :controller => 'trace', :action => 'delete', :id => @trace.id %>
+<% if_user(@trace.user) do %> + + + + + +
<%= 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 %>
+<% end %>