oscar template: make the categories clickable

This commit is contained in:
Thomas Pointhuber 2014-09-26 22:43:54 +02:00
parent 5568fbd89d
commit 25919de608
4 changed files with 46 additions and 11 deletions

View file

@ -0,0 +1,6 @@
<div id="categories" class="btn-group btn-toggle" data-toggle="buttons">
{% for category in categories %}
<label class="btn btn-sm {% if category in selected_categories %}btn-primary active{% else %}btn-default{% endif %}" data-btn-class="primary">
<input class="hidden" type="checkbox" id="checkbox_{{ category|replace(' ', '_') }}" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} />{{ _(category) }}</label>
{% endfor %}
</div>