add multi theming support

This commit is contained in:
Matej Cotman 2014-04-24 23:46:40 +00:00
parent 3386e21cdf
commit 08eaffe245
41 changed files with 104 additions and 29 deletions

View file

@ -0,0 +1,7 @@
<div id="categories">
{% for category in categories %}
<div class="checkbox_container">
<input type="checkbox" id="checkbox_{{ category|replace(' ', '_') }}" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} /><label for="checkbox_{{ category|replace(' ', '_') }}">{{ _(category) }}</label>
</div>
{% endfor %}
</div>