mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			753 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			753 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <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>
 | 
