|  | @@ -158,6 +158,7 @@
 | 
	
		
			
			| 158 | 158 |  				    <th>{{ _("Engine name") }}</th>
 | 
	
		
			
			| 159 | 159 |  				    <th>{{ _("Shortcut") }}</th>
 | 
	
		
			
			| 160 | 160 |  				    <th>{{ _("SafeSearch") }}</th>
 | 
	
		
			
			|  | 161 | +				    <th>{{ _("Time range") }}</th>
 | 
	
		
			
			| 161 | 162 |  				    <th>{{ _("Avg. time") }}</th>
 | 
	
		
			
			| 162 | 163 |  				    <th>{{ _("Max time") }}</th>
 | 
	
		
			
			| 163 | 164 |                                      {% else %}
 | 
	
	
		
			
			|  | @@ -179,6 +180,7 @@
 | 
	
		
			
			| 179 | 180 |                                      <th>{{ search_engine.name }}</th>
 | 
	
		
			
			| 180 | 181 |  				    <td>{{ shortcuts[search_engine.name] }}</td>
 | 
	
		
			
			| 181 | 182 |  				    <td><input type="checkbox" {{ "checked" if search_engine.safesearch==True else ""}} readonly="readonly" disabled="disabled"></td>
 | 
	
		
			
			|  | 183 | +				    <td><input type="checkbox" {{ "checked" if search_engine.time_range_support==True else ""}} readonly="readonly" disabled="disabled"></td>
 | 
	
		
			
			| 182 | 184 |  				    <td class="{{ 'danger' if stats[search_engine.name]['warn_time'] else '' }}">{{ 'N/A' if stats[search_engine.name].time==None else stats[search_engine.name].time }}</td>
 | 
	
		
			
			| 183 | 185 |  				    <td class="{{ 'danger' if stats[search_engine.name]['warn_timeout'] else '' }}">{{ search_engine.timeout }}</td>
 | 
	
		
			
			| 184 | 186 |                                      {% else %}
 |