Advertisement
Guest User

Untitled

a guest
Apr 20th, 2017
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.68 KB | None | 0 0
  1. <h4>Create a location</h4>
  2.  
  3. <%= form_for(@location) do |f| %>
  4.     <%= f.label :name %>
  5.     <%= f.text_field :name %>
  6.     <br>
  7.     <%= f.label :description %>
  8.     <%= f.text_field :description %>
  9.     <br><br>
  10.  
  11.     <h3>GPS Coords:</h3>
  12.     <% 2.times do |i| %>
  13.         <%= fields_for(@location.gps_coords.build) do |gps_form| %>
  14.             <p>
  15.               <%= gps_form.label :lat %>
  16.               <%= gps_form.text_field :lat %>
  17.               <br>
  18.               <%= gps_form.label :long %>
  19.               <%= gps_form.text_field :long %>
  20.               <br>
  21.             </p>
  22.         <% end %>
  23.     <% end %>
  24.  
  25.     <br><br>
  26.     <%= f.submit "Create location" %>
  27. <% end %>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement