|
@@ -2,8 +2,9 @@
|
2
|
2
|
<div id="categories_container">
|
3
|
3
|
{% for category in categories %}
|
4
|
4
|
<div class="checkbox_container">
|
5
|
|
- <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>
|
|
5
|
+ <input type="checkbox" id="checkbox_{{ category|replace(' ', '_') }}" name="category_{{ category }}" {% if category in selected_categories %}checked="checked"{% endif %} /><label for="checkbox_{{ category|replace(' ', '_') }}" class="tooltips">{{ _(category) }}</label>
|
6
|
6
|
</div>
|
7
|
7
|
{% endfor %}
|
|
8
|
+ <div class="hidden">{{ _('Click on the magnifier to perform search') }}</div>
|
8
|
9
|
</div>
|
9
|
10
|
</div>
|