summaryrefslogtreecommitdiff
path: root/app/views/pokedex_entries/index.html.erb
blob: d5bdfb1b603c4b29edca7a6c6b1ef74d03fc8a44 (plain)
1
2
3
4
5
6
7
8
9
<%= turbo_frame_tag "pokedex_entries" do %>
  <%= link_to "Record an entry", new_run_pokedex_entry_path(@run) %>

  <div class="space-y-2 p-4 h-[400px] border border-orange-900 overflow-y-scroll">
    <% @pokedex_entries.each do |entry| %>
      <%= render partial: "entry", locals: {entry:} %>
    <% end %>
  </div>
<% end %>