summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Gay <eapoems@riseup.net>2023-10-31 00:26:52 -0400
committerDavid Gay <eapoems@riseup.net>2023-10-31 00:26:52 -0400
commita5c7206db0a63a577b4451dd353f40ed20a35b2c (patch)
tree02082c7ee91deec85e143c0b82793485d1e4eec0
parente1270c6b71df5e49b53e05ea932a33d42729c3db (diff)
Runs#index appearance and info
-rw-r--r--app/views/runs/index.html.erb24
1 files changed, 18 insertions, 6 deletions
diff --git a/app/views/runs/index.html.erb b/app/views/runs/index.html.erb
index 7f935a2..97267ae 100644
--- a/app/views/runs/index.html.erb
+++ b/app/views/runs/index.html.erb
@@ -1,7 +1,19 @@
-<h1 class="text-2xl">Runs</h1>
+<div class="space-y-4">
+ <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>
+ <p>A run is a playthrough of a game. A run can have multiple "checkpoints", where the player uploads a save file
+ and any notes about their run.</p>
+
+ <p>Players can invite other people to play their save file. Whoever is playing the save at the moment can
+ "checkout" the save file so other players know someone is using it. When the player is done, they can upload
+ the save file and then another player can checkout the save file. In this way, multiple players can take
+ turns playing the same run!</p>
+
+ <h2>List of runs</h2>
+
+ <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>
+</div>