summaryrefslogtreecommitdiff
path: root/app/views/locations/index.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/locations/index.html.erb')
-rw-r--r--app/views/locations/index.html.erb8
1 files changed, 8 insertions, 0 deletions
diff --git a/app/views/locations/index.html.erb b/app/views/locations/index.html.erb
new file mode 100644
index 0000000..758fd35
--- /dev/null
+++ b/app/views/locations/index.html.erb
@@ -0,0 +1,8 @@
+<h1 class="text-xl">Locations</h1>
+
+<ul>
+ <% @locations.each do |location| %>
+ <li><span class="font-bold"><%= link_to location.name, location_path(location) %></span>
+ – <%= location.description %></li>
+ <% end %>
+</ul>