X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ff03138a978406b431da71aba64941d87b509098..a1853204faefd8270e3db4a988ef373ea1ab342d:/app/views/trace/view.html.erb diff --git a/app/views/trace/view.html.erb b/app/views/trace/view.html.erb index 65957b45d..2330edddf 100644 --- a/app/views/trace/view.html.erb +++ b/app/views/trace/view.html.erb @@ -1,63 +1,64 @@ -

<%= h(@title) %>

+<% content_for :heading do %> +

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

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


- - - <% unless @trace.public? %> - +<% if current_user && (current_user==@trace.user || current_user.administrator? || current_user.moderator?)%> +
+ <%= if_user(@trace.user) do %> + <%= button_to t('.edit_track'), trace_edit_path(@trace) %> <% 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 %>
+ <%= button_to t('.delete_track'), { :controller => 'trace', :action => 'delete', :id => @trace.id }, :data => { :confirm => t('.confirm_delete') } %> + +<% end %>