mirror of
				https://github.com/searxng/searxng.git
				synced 2025-11-03 19:17:07 -05:00 
			
		
		
		
	- Whitespaces - Change a few <p> in <span> - Add RSS to allow browser detection - A few UIUX changes - Add a few more allowed translations
		
			
				
	
	
		
			11 lines
		
	
	
		
			598 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			598 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<div id="categories">
 | 
						|
    <div id="categories_container">
 | 
						|
        {% 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(' ', '_') }}" class="tooltips">{{ _(category) }}</label>
 | 
						|
        </div>
 | 
						|
        {% endfor %}
 | 
						|
        {% if display_tooltip %}<div class="hidden">{{ _('Click on the magnifier to perform search') }}</div>{% endif %}
 | 
						|
    </div>
 | 
						|
</div>
 |