mirror of
				https://github.com/searxng/searxng
				synced 2024-01-01 19:24:07 +01:00 
			
		
		
		
	* set border top and bottom on sidebar collasables * inrease peading on summary so its easier to click on mobile * remove margins and add flex wrapper to normalize elements in sidebar
		
			
				
	
	
		
			25 lines
		
	
	
	
		
			782 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
	
		
			782 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
<div id="engines_msg">
 | 
						|
  <details class="sidebar-collapsable">
 | 
						|
    <summary class="title" id="engines_msg-title">{{ _('Messages from the search engines') }}</summary>
 | 
						|
    <div class="dialog-error" role="alert">
 | 
						|
      {{ icon_big('warning') }}
 | 
						|
      <div>
 | 
						|
        <p>
 | 
						|
          <strong>{{ _('Error!') }}</strong>
 | 
						|
          {{ _('Engines cannot retrieve results') }}:
 | 
						|
        </p>
 | 
						|
        {%- for engine_name, error_type in unresponsive_engines -%}
 | 
						|
          <p>{{- engine_name }} (
 | 
						|
            <a href="{{ url_for('stats', engine=engine_name|e) }}"
 | 
						|
               title="{{ _('View error logs and submit a bug report') }}">
 | 
						|
               {{- error_type -}}
 | 
						|
            </a>
 | 
						|
            ){{- '' -}}
 | 
						|
          </p>
 | 
						|
        {%- endfor -%}
 | 
						|
      </div>
 | 
						|
    </div>
 | 
						|
  </details>
 | 
						|
</div>
 | 
						|
 | 
						|
 |