Listing Clothes

<%= for {shop, map_of_clothes_by_type} <- @clothes_map do %>

<%= shop %>

<%= for {type, map_of_clothes_by_name} <- map_of_clothes_by_type do %>

<%= type %>

<%= for {_name, list_of_clothes} <- map_of_clothes_by_name do %> <%= for clothes <- list_of_clothes do %> <% end %> <% end %>
Name Color Game
<%= clothes.name %> <%= clothes.color %> <%= clothes.game %> <%= link "Show", to: Routes.clothes_path(@conn, :show, clothes) %>
<% end %> <% end %>