summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Gay <eapoems@riseup.net>2023-10-30 02:43:31 -0400
committerDavid Gay <eapoems@riseup.net>2023-10-30 02:43:36 -0400
commit8fbd525aba463093602af681ac54f86bd1451b48 (patch)
tree152a4096610225b18be50b26e441e13bd1d7b3c1
parentbd681f7a2c58c796a3fa9316ea17b40ba5e01129 (diff)
Runs#index
-rw-r--r--app/views/runs/index.html.erb7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/views/runs/index.html.erb b/app/views/runs/index.html.erb
new file mode 100644
index 0000000..7f935a2
--- /dev/null
+++ b/app/views/runs/index.html.erb
@@ -0,0 +1,7 @@
+<h1 class="text-2xl">Runs</h1>
+
+<ul class="list-disc">
+ <% @runs.each do |run| %>
+ <li><%= run.game.title %> - <%= link_to run.title, run_path(run) %> - Started by <%= run.user.email %></li>
+ <% end %>
+</ul>