Skip to content

Instantly share code, notes, and snippets.

@Tetsuro
Created March 9, 2013 20:36
Show Gist options
  • Save Tetsuro/5125632 to your computer and use it in GitHub Desktop.
Save Tetsuro/5125632 to your computer and use it in GitHub Desktop.
outputting shop's product types in a <select>
<div>
<strong>SEARCH BY TYPE: </strong>
<select id="product_type">
<option></option>
{% for product_type in shop.types %}
<option>{{ product_type }}</option>
{% endfor %}
</select>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment