jcbantuelle/dominion-meteor

View on GitHub
app/game/client/templates/sort_cards.html

Summary

Maintainability
Test Coverage
<template name="sort_cards">
  <strong>{{{instructions}}}</strong>
  <form id="turn-event">
    <div id="sortable-cards">
      {{#each cards}}
        <div class="{{types}} ordered">
          {{name}}
          <input type="hidden" value="{{@index}}" />
        </div>
      {{/each}}
    </div>
    <br class="clear" />
    <button type="submit" id="turn-event-button" class="btn btn-primary btn-xs">Choose</button>
  </form>
</template>