summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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>