]> git.openstreetmap.org Git - rails.git/blob - app/views/notes/_new.html.erb
Add support for creating new notes
[rails.git] / app / views / notes / _new.html.erb
1 <p>
2   Move the marker to the correct position and<br/>
3   describe the problem in the box below:
4 </p>
5 <%= form_tag notes_path do %>
6   <%= hidden_field_tag "lon" %>
7   <%= hidden_field_tag "lat" %>
8   <%= text_area_tag "comment", "", :cols => 40, :rows => 10 %>
9   <br/>
10   <%= submit_tag "Submit", :id => "note-submit" %>
11   <%= submit_tag "Cancel", :id => "note-cancel" %>
12 <% end %>