X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/203ba58bab01b7a61cdff8974cbbfe4f7f639cb1..37f404252c6cdfef5d66545da774b2d1abbd6703:/app/views/trace/edit.html.erb diff --git a/app/views/trace/edit.html.erb b/app/views/trace/edit.html.erb index 200f6aa26..b2254afdd 100644 --- a/app/views/trace/edit.html.erb +++ b/app/views/trace/edit.html.erb @@ -4,54 +4,46 @@ -<%= form_for @trace, :url => { :action => "edit" } do |f| %> +<%= form_for @trace, :method => :post, :url => { :action => "edit" } do |f| %>
- -

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

+ +

<%= @trace.name %> (<%= link_to t('trace.edit.download'), trace_data_path(@trace) %>)

- +

<%= 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', :anchor => "map=14/#{@trace.latitude}/#{@trace.longitude}" %> / <%=link_to t('trace.edit.edit'), :controller => 'site', :action => 'edit', :gpx=> @trace.id, :anchor => "map=14/#{@trace.latitude}/#{@trace.longitude}" %>) -
- <% end %> - -
- -

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

+ +

<%= link_to h(@trace.user.display_name), user_path(@trace.user) %>

- + <%= 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' %>)