Listing games

<%= for game <- @games do %> <% end %>
<%= link "Started on #{Timex.format!(game.inserted_at, "%b %e at %I:%M %P", :strftime)}", 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), [class: "create-game"], fn _f -> %>
<%= submit "Create game", class: "btn btn-primary" %>
<% end %>