Listing games

<%= for game <- @games do %> <% end %>
Id
<%= game.id %> <%= link "Show", to: game_path(@conn, :show, game), class: "btn btn-default btn-xs" %> <%= link "Delete", to: game_path(@conn, :delete, game), method: :delete, data: [confirm: "Are you sure?"], class: "btn btn-danger btn-xs" %>
<%= form_for @changeset, game_path(@conn, :create), fn f -> %>
<%= submit "Create game", class: "btn btn-primary" %>
<% end %>