X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/3666b674330ec8d14a224932a191d6121c5974e2..c24c2e481cc6d27e76274ed4e32668a4690a7788:/app/views/traces/new.html.erb diff --git a/app/views/traces/new.html.erb b/app/views/traces/new.html.erb index d2ccebb4c..b7951cb32 100644 --- a/app/views/traces/new.html.erb +++ b/app/views/traces/new.html.erb @@ -2,32 +2,16 @@

<%= t ".upload_trace" %>

<% end %> -<%= error_messages_for "trace" %> - -<%= form_for @trace, :url => { :action => "create" }, :html => { :multipart => true } do |f| %> -
-
-
- - <%= f.file_field :gpx_file %> -
-
- - <%= 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" %>) -
-
- - <%= f.submit %> - "><%= t ".help" %> -
+<%= bootstrap_form_for @trace, :url => { :action => "create" }, :html => { :multipart => true } do |f| %> + <%= f.file_field :gpx_file, :placeholder => t("helpers.file.prompt") %> + <%= 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(".help"), t(".help_url"), :class => "btn btn-link" %> <% end %>