Created
December 30, 2014 17:46
-
-
Save dan-gamble/df31543f58288b62f7b2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="field-wrapper"> | |
<label>Overall Rating</label> | |
<div class="controls controls--form">{{ form.min_rating }} - {{ form.max_rating }}</div> | |
<div class="selected-values"> | |
<span class="js-value-1">{{ form.min_rating.value }}</span> | |
to | |
<span class="js-value-2">{{ form.max_rating.value }}</span> | |
</div> | |
</div> | |
<div class="field-wrapper"> | |
<label>Card type</label> | |
<div class="controls controls--form">{{ form.card_type }}</div> | |
<div class="selected-values"> | |
<span class="js-value-1">{{ form.card_type.value }}</span> | |
</div> | |
</div> | |
<div class="field-wrapper"> | |
<label>Skill moves</label> | |
<div class="controls controls--form">{{ form.skill_min }} - {{ form.skill_max }}</div> | |
<div class="selected-values"> | |
<span class="js-value-1">{{ form.skill_min.value }}</span> | |
to | |
<span class="js-value-2">{{ form.skill_max.value }}</span> | |
</div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment