logo

searx

My custom branche(s) on searx, a meta-search engine git clone https://hacktivis.me/git/searx.git

categories.html (588B)


  1. <div id="categories">{{- '' -}}
  2. <div id="categories_container">
  3. {%- for category in categories -%}
  4. <div class="category"><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></div>
  5. {%- endfor -%}
  6. {%- if display_tooltip %}<div class="help">{{ _('Click on the magnifier to perform search') }}</div>{% endif -%}
  7. </div>{{- '' -}}
  8. </div>