<% content_for :heading do %>

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

<% end %> <% if STATUS != :gpx_offline %> <% if @trace.inserted %> <% else %> <%= t '.pending' %> <% end %> <% end %> <% if @trace.inserted? %> <% end %>
<%= t '.filename' %> <%= @trace.name %> (<%= link_to t('.download'), trace_data_path(@trace) %>)
<%= t '.uploaded' %> <%= l @trace.timestamp, :format => :friendly %>
<%= t '.points' %> <%= @trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/,'\1,') %>
<%= t '.start_coordinates' %>
<%= @trace.latitude %>; <%= @trace.longitude %>
(<%=link_to t('.map'), :controller => 'site', :action => 'index', :mlat => @trace.latitude, :mlon => @trace.longitude, :anchor => "map=14/#{@trace.latitude}/#{@trace.longitude}" %> / <%=link_to t('.edit'), :controller => 'site', :action => 'edit', :gpx=> @trace.id, :anchor => "map=14/#{@trace.latitude}/#{@trace.longitude}" %>)
<%= t '.owner' %> <%= link_to h(@trace.user.display_name), user_path(@trace.user) %>
<%= t '.description' %> <%= h(@trace.description) %>
<%= t '.tags' %> <% unless @trace.tags.empty? %> <%= raw(@trace.tags.collect { |tag| link_to tag.tag, { :controller => 'traces', :action => 'list', :tag => tag.tag, :id => nil } }.join(", ")) %> <% else %> <%= t '.none' %> <% end %>
<%= t '.visibility' %> <%= t "traces.visibility.#{@trace.visibility}" %>


<% if current_user && (current_user==@trace.user || current_user.administrator? || current_user.moderator?)%>
<% if current_user == @trace.user %>
<%= button_to t('.edit_track'), trace_edit_path(@trace) %>
<% end %> <%= button_to t('.delete_track'), { :controller => 'traces', :action => 'delete', :id => @trace.id }, :data => { :confirm => t('.confirm_delete') } %>
<% end %>