summaryrefslogtreecommitdiff
path: root/app/views/runs/show.html.erb
blob: 11fdd12f6556601ca56138c4866feca999c26da7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<h1 class="text-2xl"><%= @run.title %></h1>
<p class="subtitle"><%= @run.game.title %></p>

<p>Run started by: <%= @run.user.email %></p>

<%= link_to "New checkpoint", new_run_checkpoint_path(@run) %>

<h2 class="text-xl">Checkpoints</h2>

<ul class="list-disc">
  <% @run.checkpoints.each do |checkpoint| %>
    <li><%= checkpoint.created_at %>
      <%= link_to "[save file]", rails_blob_path(checkpoint.save_file, disposition: "attachment") %></li>
  <% end %>
</ul>