|  | @@ -117,7 +117,7 @@
 | 
	
		
			
			| 117 | 117 |  
 | 
	
		
			
			| 118 | 118 |                  <!-- Nav tabs -->
 | 
	
		
			
			| 119 | 119 |                  <ul class="nav nav-tabs nav-justified hide_if_nojs" role="tablist" style="margin-bottom:20px;">
 | 
	
		
			
			| 120 |  | -                    {% for categ in categories %}
 | 
	
		
			
			|  | 120 | +                    {% for categ in all_categories %}
 | 
	
		
			
			| 121 | 121 |                      <li{% if loop.first %} class="active"{% endif %}><a href="#tab_engine_{{ categ|replace(' ', '_') }}" role="tab" data-toggle="tab">{{ _(categ) }}</a></li>
 | 
	
		
			
			| 122 | 122 |                      {% endfor %}
 | 
	
		
			
			| 123 | 123 |                  </ul>
 | 
	
	
		
			
			|  | @@ -128,7 +128,7 @@
 | 
	
		
			
			| 128 | 128 |  
 | 
	
		
			
			| 129 | 129 |                  <!-- Tab panes -->
 | 
	
		
			
			| 130 | 130 |                  <div class="tab-content">
 | 
	
		
			
			| 131 |  | -                    {% for categ in categories %}
 | 
	
		
			
			|  | 131 | +                    {% for categ in all_categories %}
 | 
	
		
			
			| 132 | 132 |                      <noscript><label>{{ _(categ) }}</label>
 | 
	
		
			
			| 133 | 133 |                      </noscript>
 | 
	
		
			
			| 134 | 134 |                      <div class="tab-pane{% if loop.first %} active{% endif %} active_if_nojs" id="tab_engine_{{ categ|replace(' ', '_') }}">
 | 
	
	
		
			
			|  | @@ -213,21 +213,23 @@
 | 
	
		
			
			| 213 | 213 |                      {{ _('This is the list of cookies and their values searx is storing on your computer.') }}<br />
 | 
	
		
			
			| 214 | 214 |                      {{ _('With that list, you can assess searx transparency.') }}<br />
 | 
	
		
			
			| 215 | 215 |                  </p>
 | 
	
		
			
			| 216 |  | -                <div class="container-fluid">
 | 
	
		
			
			| 217 |  | -                    <fieldset>
 | 
	
		
			
			| 218 |  | -                        <div class="row">
 | 
	
		
			
			| 219 |  | -                            <div class="col-xs-6 col-sm-4 col-md-4 text-muted"><label>{{ _('Cookie name') }}</label></div>
 | 
	
		
			
			| 220 |  | -                            <div class="col-xs-6 col-sm-4 col-md-4 text-muted"><label>{{ _('Value') }}</label></div>
 | 
	
		
			
			| 221 |  | -                        </div>
 | 
	
		
			
			|  | 216 | +                {% if cookies %}
 | 
	
		
			
			|  | 217 | +                <table class="table table-striped">
 | 
	
		
			
			|  | 218 | +                    <tr>
 | 
	
		
			
			|  | 219 | +                        <th class="text-muted" style="padding-right:40px;">{{ _('Cookie name') }}</th>
 | 
	
		
			
			|  | 220 | +                        <th class="text-muted">{{ _('Value') }}</th>
 | 
	
		
			
			|  | 221 | +                    </tr>
 | 
	
		
			
			| 222 | 222 |  
 | 
	
		
			
			| 223 | 223 |                      {% for cookie in cookies %}
 | 
	
		
			
			| 224 |  | -                        <div class="row">
 | 
	
		
			
			| 225 |  | -                            <div class="col-xs-6 col-sm-4 col-md-4 text-muted">{{ cookie }}</div>
 | 
	
		
			
			| 226 |  | -                            <div class="col-xs-6 col-sm-4 col-md-4 text-muted">{{ cookies[cookie] }}</div>
 | 
	
		
			
			| 227 |  | -                        </div>
 | 
	
		
			
			|  | 224 | +                    <tr>
 | 
	
		
			
			|  | 225 | +                        <td class="text-muted" style="padding-right:40px;">{{ cookie }}</td>
 | 
	
		
			
			|  | 226 | +                        <td class="text-muted">{{ cookies[cookie] }}</td>
 | 
	
		
			
			|  | 227 | +                    </tr>
 | 
	
		
			
			| 228 | 228 |                      {% endfor %}
 | 
	
		
			
			| 229 |  | -                    </fieldset>
 | 
	
		
			
			| 230 |  | -                </div>
 | 
	
		
			
			|  | 229 | +                </table>
 | 
	
		
			
			|  | 230 | +                {% else %}
 | 
	
		
			
			|  | 231 | +                    {% include 'oscar/messages/no_cookies.html' %}
 | 
	
		
			
			|  | 232 | +                {% endif %}
 | 
	
		
			
			| 231 | 233 |              </div>
 | 
	
		
			
			| 232 | 234 |          </div>
 | 
	
		
			
			| 233 | 235 |          <p class="text-muted" style="margin:20px 0;">{{ _('These settings are stored in your cookies, this allows us not to store this data about you.') }}
 |