Listing Clothes

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

<%= shop %>

<%= for clothes <- list_of_clothes do %> <% end %>
Name Color Game
<%= clothes.name %> <%= clothes.color %> <%= clothes.game %> <%= link "Show", to: Routes.clothes_path(@conn, :show, clothes) %> <%= link "Edit", to: Routes.clothes_path(@conn, :edit, clothes) %> <%= link "Delete", to: Routes.clothes_path(@conn, :delete, clothes), method: :delete, data: [confirm: "Are you sure?"] %>
<% end %> <%= link "New Clothes", to: Routes.clothes_path(@conn, :new) %>