Skip to content

Instantly share code, notes, and snippets.

@arothenberg
Created February 14, 2013 21:13
Show Gist options
  • Save arothenberg/4956460 to your computer and use it in GitHub Desktop.
Save arothenberg/4956460 to your computer and use it in GitHub Desktop.
<div class= "container-fluid span12" id = "filtersdiv" >
<h5>TOP 10 GENRE</h5>
<div class="btn-group btn-group-vertical">
<div data-toggle="buttons-check">
{%for c in criteria_by_order.values()%}
<input type="hidden" name="{{c.html_id('criteria','input')}}" value="{{c.html_variable('_on')}}">
{% if (c.state()==True)%}
<button type="submit" id="criteria" name="{{c.html_id('criteria','button')}}" class="btn
btn-mini active"><b>{{c.alias()}}</b>
{%else%}
<button type="submit" id="criteria" name="{{c.html_id('criteria','button')}}" class="btn
btn-mini"> {{c.alias()}}
{%endif%}
</button>
{%endfor%}
</div>
</div>
</div></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment