summaryrefslogtreecommitdiff
path: root/app/views/home/index.html.erb
blob: 10be1389ee13e034e9892fd6e7a82a0079e95fc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<div class="space-y-8">
  <h1 class="font-bold text-2xl">Welcome to the Cable Club!</h1>

  <div class="space-y-4">
    <h2>Latest checkpoints</h2>
    <ul class="list-disc">
      <% @latest_checkpoints.each do |checkpoint| %>
        <li>At <%= checkpoint.created_at %>
          <%= checkpoint.user.email %> checked in a save for
          <%= link_to checkpoint.run.title, run_path(checkpoint.run) %> (<%= checkpoint.run.game.title %>)
          <%= link_to "[save file]", rails_blob_path(checkpoint.save_file, disposition: "attachment") %></li>
      <% end %>
    </ul>
  </div>
</div>