summaryrefslogtreecommitdiff
path: root/app/views/pokedex_entries/_entry.html.erb
blob: 992aa698aff089c61d0374c8d9c47c5d646d81b2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<div class="flex space-x-2 items-center">
  <div class="flex justify-around bg-white h-[60px] w-[60px] border border-orange-900
              p-1 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>