X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ff03138a978406b431da71aba64941d87b509098..2e444eb7bbb48ff534a639d6d7bab022b02add8f:/app/views/trace/edit.html.erb diff --git a/app/views/trace/edit.html.erb b/app/views/trace/edit.html.erb index fceaf0147..d9ec9f14b 100644 --- a/app/views/trace/edit.html.erb +++ b/app/views/trace/edit.html.erb @@ -1,43 +1,63 @@ -

<%= h(@title) %>

+<% content_for :heading do %> +

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

+<% end %> -<% form_for :trace, @trace do |f| %> - - - - - - - - - - +<%= form_for @trace, :url => { :action => "edit" } do |f| %> + +
+
+
+ +

<%= @trace.name %> (<%= link_to t('trace.edit.download'), :controller => 'trace', :action => 'data', :id => @trace.id %>)

+
+
+ +

<%= l @trace.timestamp, :format => :friendly %>

+
+
+ <% if @trace.inserted? %> -
- - - - - - + +
+
+ +

<%= @trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/,'\1,') %>

+
+
+ +
+
+ <%= @trace.latitude %>; + <%= @trace.longitude %> +
+ (<%=link_to t('trace.edit.map'), :controller => 'site', :action => 'index', :lat => @trace.latitude, :lon => @trace.longitude, :zoom => 14 %> / <%=link_to t('trace.edit.edit'), :controller => 'site', :action => 'edit', :lat => @trace.latitude, :lon => @trace.longitude, :gpx=> @trace.id, :zoom => 14 %>) +
+ <% end %> - - - - - - - - - - - - -
<%= t'trace.edit.filename' %><%= @trace.name %> (<%= link_to 'download', :controller => 'trace', :action => 'data', :id => @trace.id %>)
<%= t'trace.edit.uploaded_at' %><%= l @trace.timestamp %>
<%= t'trace.edit.points' %><%= @trace.size.to_s.gsub(/(\d)(?=(\d{3})+$)/,'\1,') %>
<%= t'trace.edit.start_coord' %>Start coordinate:
<%= @trace.latitude %>; <%= @trace.longitude %>
(<%=link_to 'map', :controller => 'site', :action => 'index', :lat => @trace.latitude, :lon => @trace.longitude, :zoom => 14 %> / <%=link_to t('trace.edit.edit'), :controller => 'site', :action => 'edit', :lat => @trace.latitude, :lon => @trace.longitude, :gpx=> @trace.id, :zoom => 14 %>)
<%= t'trace.edit.owner' %><%= link_to h(@trace.user.display_name), {:controller => 'user', :action => 'view', :display_name => @trace.user.display_name} %>
<%= t'trace.edit.description' %><%= f.text_field :description %>
Tags:<%= f.text_field :tagstring %>
- -

- -<%= submit_tag 'Save Changes' %> + +
+
+ +

<%= link_to h(@trace.user.display_name), {:controller => 'user', :action => 'view', :display_name => @trace.user.display_name} %>

+
+
+ + <%= f.text_field :description %> +
+
+ + <%= f.text_field :tagstring %> (<%= t'trace.edit.tags_help' %>) +
+
+ + <%= f.select :visibility, [[t('trace.visibility.private'),"private"],[t('trace.visibility.public'),"public"],[t('trace.visibility.trackable'),"trackable"],[t('trace.visibility.identifiable'),"identifiable"]] %> (<%= t'trace.edit.visibility_help' %>) +
+
+ + + +<%= submit_tag t'trace.edit.save_button' %> <% end %>