summaryrefslogtreecommitdiff
path: root/app/views/runs/index.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/runs/index.html.erb')
-rw-r--r--app/views/runs/index.html.erb3
1 files changed, 2 insertions, 1 deletions
diff --git a/app/views/runs/index.html.erb b/app/views/runs/index.html.erb
index 9f01859..5e49429 100644
--- a/app/views/runs/index.html.erb
+++ b/app/views/runs/index.html.erb
@@ -15,7 +15,8 @@
<ul class="list-disc">
<% @runs.each do |run| %>
- <li><%= run.game.title %> - <%= link_to run.title, run_path(run) %> - Started by <%= run.user.name %></li>
+ <li><%= run.game.title %> - <%= link_to run.title, run_path(run) %>
+ - Started by <%= link_to run.user.name || "???", user_path(run.user) %></li>
<% end %>
</ul>
</div>