summaryrefslogtreecommitdiff
path: root/app/views/pois/show.html.erb
diff options
context:
space:
mode:
authorLars Henrik Mai <lars.mai@kontinui.de>2014-03-29 16:48:54 +0100
committerLars Henrik Mai <lars.mai@kontinui.de>2014-03-29 16:49:22 +0100
commit32b1ab88cbd74bf2147731cc0c7e6c8db95fc540 (patch)
tree57900fd451368f2609f6314d166741d98a4de0f6 /app/views/pois/show.html.erb
parent90121413900895958a2ed8daaae2ab1e7dde996d (diff)
added basic scaffold for pois
Diffstat (limited to 'app/views/pois/show.html.erb')
-rw-r--r--app/views/pois/show.html.erb19
1 files changed, 19 insertions, 0 deletions
diff --git a/app/views/pois/show.html.erb b/app/views/pois/show.html.erb
new file mode 100644
index 0000000..77fdf0b
--- /dev/null
+++ b/app/views/pois/show.html.erb
@@ -0,0 +1,19 @@
+<p id="notice"><%= notice %></p>
+
+<p>
+ <strong>Message:</strong>
+ <%= @poi.message %>
+</p>
+
+<p>
+ <strong>Lat:</strong>
+ <%= @poi.lat %>
+</p>
+
+<p>
+ <strong>Lon:</strong>
+ <%= @poi.lon %>
+</p>
+
+<%= link_to 'Edit', edit_poi_path(@poi) %> |
+<%= link_to 'Back', pois_path %>