X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/93dab8a1272f8c807da841c0a55b37f74b65b8c3..ec9deb5dc2a4af5db3f0e993942a0aa438a21e94:/app/views/trace/view.rhtml diff --git a/app/views/trace/view.rhtml b/app/views/trace/view.rhtml index 28ef095ab..381a2fc97 100644 --- a/app/views/trace/view.rhtml +++ b/app/views/trace/view.rhtml @@ -1,15 +1,63 @@ -trace <%= @trace.name %> -
-icon -
- -picture - -
-time <%= @trace.timestamp %> -
-dec <%= @trace.description %> +

<%= h(@title) %>

+ <% if @trace.inserted %> + + <% else %> + <%= t'trace.view.pending' %> + <% 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'trace.view.uploaded' %><%= @trace.timestamp %>
<%= t'trace.view.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'trace.view.owner' %><%= link_to h(@trace.user.display_name), {:controller => 'user', :action => 'view', :display_name => @trace.user.display_name} %>
<%= t'trace.view.description' %><%= h(@trace.description) %>
<%= 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 %> + <% else %> + <%= t'trace.view.none' %> + <% end %> +
+

+ + + <% 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 %>