<% title('Select Cards') %>
Page 1
<% @cards.each do |card| %>
<%= small_image(card) %>
<% end %>
Total: <%= @user_cards.size %> / <%= Card.count %>
How To Use
  1. If you own more than half the cards, click the Add All button.
  2. For each page, add/remove cards until it matches your in-game Card List.
  3. Confirm that your Total matches your in-game Card List.
  4. Click Save Cards.
<%= form_tag(set_cards_path, class: 'text-right') do %> <%= hidden_field_tag('cards', @user_cards.join(','), id: 'card-ids') %> <%= link_to 'Reset', select_cards_path, class: 'btn btn-danger' %> <%= submit_tag('Save Cards', class: 'btn btn-primary', id: 'submit') %> <% end %>