Listing Categories

<%= for category <- @categories do %> <% end %>
Title Picture
<%= category.title %> <%= category.picture %> <%= link "Show", to: category_path(@conn, :show, category), class: "btn btn-default btn-xs" %> <%= link "Edit", to: category_path(@conn, :edit, category), class: "btn btn-default btn-xs" %> <%= link "Delete", to: category_path(@conn, :delete, category), method: :delete, data: [confirm: "Are you sure?"], class: "btn btn-danger btn-xs" %>
<%= link "New Category", to: category_path(@conn, :new) %>