blob: e9006c987fb47e9363a35b8cdd917d4f76f95127 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
<div id="map"></div>
<%= form_for(@poi) do |f| %>
<% if @poi.errors.any? %>
<div id="error_explanation">
<h2><%= pluralize(@poi.errors.count, "error") %> prohibited this poi from being saved:</h2>
<ul>
<% @poi.errors.full_messages.each do |msg| %>
<li><%= msg %></li>
<% end %>
</ul>
</div>
<% end %>
<div class="field">
<%= f.label :message %><br>
<%= f.text_area :message %>
</div>
<%= f.hidden_field :lat %>
<%= f.hidden_field :lon %>
<div class="actions">
<%= f.submit %>
</div>
<% end %>
|