X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/c82fdf8e0fd4e5a8f2d831592d5e1fe13e1fe558..cb7b79a58f0337ab28b41ed5105215de302d3f73:/app/views/traces/edit.html.erb?ds=sidebyside diff --git a/app/views/traces/edit.html.erb b/app/views/traces/edit.html.erb index 0900a45dc..13829727c 100644 --- a/app/views/traces/edit.html.erb +++ b/app/views/traces/edit.html.erb @@ -1,55 +1,19 @@ <% content_for :heading do %> -

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

+

<%= t ".heading", :name => @trace.name %>

<% end %> - - -<%= form_for @trace do |f| %> - -
-
-
- -

<%= @trace.name %> (<%= link_to t('.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('.map'), :controller => 'site', :action => 'index', :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}" %>) - <% end %> -
- -

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

-
-
- - <%= f.text_field :description %> -
-
- - <%= f.text_field :tagstring %> (<%= t '.tags_help' %>) -
-
- - <%= f.select :visibility, [[t('traces.visibility.private'), "private"], [t('traces.visibility.public'), "public"], [t('traces.visibility.trackable'), "trackable"], [t('traces.visibility.identifiable'), "identifiable"]] %> (<%= t '.visibility_help' %>) -
-
- -
- -<%= submit_tag t '.save_button' %> + "picture", :id => @trace.id, :display_name => @trace.user.display_name %>"> +<%= bootstrap_form_for @trace do |f| %> + <%= f.text_field :name, :disabled => true %> + <%= f.text_field :description %> + <%= f.text_field :tagstring %> + <%= f.select :visibility, + [[t("traces.visibility.private"), "private"], + [t("traces.visibility.public"), "public"], + [t("traces.visibility.trackable"), "trackable"], + [t("traces.visibility.identifiable"), "identifiable"]], + :help => link_to(t(".visibility_help"), t(".visibility_help_url")) %> + <%= f.primary %> + <%= link_to t(".cancel"), show_trace_path(@trace.user, @trace), :class => "btn btn-link" %> <% end %>