TRAINER CARD
ID No. <%= @user.id %>

NAME: <%= @user.name || "???" %>

<%= link_to "POKéDEX: #{@user.captured_pokemon.count}", pokedex_path(user_id: @user.id) %>

TIME: <%= distance_of_time_in_words_to_now(@user.created_at) %>

<% if @user == current_user %>

<%= link_to "Edit trainer card", edit_user_url(@user) %>

<% end %>

<%= pluralize(@user.runs.count, "run") %>

<%= link_to "Start a run", new_run_path %>

    <% @user.runs.each do |run| %>
  • <%= run.game.title %> - <%= link_to run.title, run_path(run) %>
  • <% end %>