summaryrefslogtreecommitdiff
path: root/app/views/pokedex_entries/_entry.html.erb
blob: 1c7f0eda0d6aac89a13f920b4be40d37122eb0bf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<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 <%= "shiny-glow" if entry.shiny? %>">
    <%= 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>