blob: 253add4616d62a4d72a14b6645399f3d788db6c4 (
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
28
29
30
31
|
<h1>Listing pois</h1>
<table>
<thead>
<tr>
<th>Description</th>
<th>Lat</th>
<th>Lon</th>
<th></th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>
<% @pois.each do |poi| %>
<tr>
<td><%= poi.message %></td>
<td><%= poi.lat %></td>
<td><%= poi.lon %></td>
<td><%= link_to 'Show', poi %></td>
<td><%= link_to 'Edit', edit_poi_path(poi) %></td>
<td><%= link_to 'Destroy', poi, method: :delete, data: { confirm: 'Are you sure?' } %></td>
</tr>
<% end %>
</tbody>
</table>
<br>
<%= link_to 'New Poi', new_poi_path %>
|