summaryrefslogtreecommitdiff
path: root/app/views/pokedex_entries/index.html.erb
diff options
context:
space:
mode:
authorDavid Gay <david@davidgay.org>2023-11-03 02:25:06 -0400
committerDavid Gay <david@davidgay.org>2023-11-03 02:25:06 -0400
commite6577d0fd5ffacd24cf52125cd44037fc33fdb9a (patch)
treecc723b8a01df75735b01bd69c4ca3b32ea2082c5 /app/views/pokedex_entries/index.html.erb
parentd4c92922e393876e93ad13943ba45fb08586e6c8 (diff)
Better home#index, using partials
Diffstat (limited to 'app/views/pokedex_entries/index.html.erb')
-rw-r--r--app/views/pokedex_entries/index.html.erb13
1 files changed, 1 insertions, 12 deletions
diff --git a/app/views/pokedex_entries/index.html.erb b/app/views/pokedex_entries/index.html.erb
index e31cf2d..d5bdfb1 100644
--- a/app/views/pokedex_entries/index.html.erb
+++ b/app/views/pokedex_entries/index.html.erb
@@ -3,18 +3,7 @@
<div class="space-y-2 p-4 h-[400px] border border-orange-900 overflow-y-scroll">
<% @pokedex_entries.each do |entry| %>
- <div class="flex space-x-2 items-center">
- <div class="flex justify-around bg-white h-[60px] w-[60px] border border-orange-900
- rounded shadow">
- <%= image_tag entry.pokemon.sprite_path(shiny: entry.shiny?) %>
- </div>
- <div>
- <div><%= "Shiny " if entry.shiny? %><%= entry.pokemon.name %></div>
- <div class="text-sm">Recorded by
- <%= link_to entry.user.name || "???", user_path(entry.user) %> @ <%= entry.recorded_at %>
- </div>
- </div>
- </div>
+ <%= render partial: "entry", locals: {entry:} %>
<% end %>
</div>
<% end %>