Listing Clothes

<%= for clothes <- @clothes do %> <% end %>
Name Location Game
<%= clothes.name %> <%= clothes.location %> <%= 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?"] %>
<%= link "New Clothes", to: Routes.clothes_path(@conn, :new) %>