You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
783 B
13 lines
783 B
<div id="categories"> |
|
{%- if rtl -%} |
|
{% for category in categories | reverse -%} |
|
<input class="hidden" type="checkbox" id="checkbox_{{ category|replace(' ', '_') }}" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} />{{- '' -}} |
|
<label for="checkbox_{{ category|replace(' ', '_') }}">{{ _(category) }}</label> |
|
{%- endfor %} |
|
{%- else -%} |
|
{% for category in categories -%} |
|
<input class="hidden" type="checkbox" id="checkbox_{{ category|replace(' ', '_') }}" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} />{{- '' -}} |
|
<label for="checkbox_{{ category|replace(' ', '_') }}">{{ _(category) }}</label> |
|
{%- endfor %} |
|
{%- endif -%} |
|
</div>
|
|
|