pokemon-couture/lib/pokemon_couture_web/live/clothes_tracker_live.html.leex

23 lines
609 B
Plaintext

<h1>Listing Clothes</h1>
<%= for {shop, map_of_clothes_by_type} <- @clothes_map do %>
<h2> <%= shop %></h2>
<%= for {type, list_of_clothes} <- map_of_clothes_by_type do %>
<h3> <%= type %> </h3>
<table>
<thead>
<tr>
<th>Name</th>
<th>Color</th>
<th>Game</th>
<th></th>
</tr>
</thead>
<tbody>
<%= for clothes <- list_of_clothes do %>
<%= live_component PokemonCoutureWeb.Components.ClothesComponent, id: clothes.id, clothes: clothes, user: @user %>
<% end %>
</tbody>
</table>
<% end %>
<% end %>