<%= turbo_frame_tag "pokedex_entries" do %> <%= link_to "Record an entry", new_run_pokedex_entry_path(@run) %>
<% @pokedex_entries.each do |entry| %>
<%= image_tag entry.pokemon.sprite_path(shiny: entry.shiny?) %>
<%= "Shiny " if entry.shiny? %><%= entry.pokemon.name %>
Recorded by <%= link_to entry.user.name || "???", user_path(entry.user) %> @ <%= entry.recorded_at %>
<% end %>
<% end %>