no_results.html 907 B

123456789101112131415161718192021
  1. {% from 'simple/macros.html' import icon %}
  2. {% if unresponsive_engines %}
  3. <div class="dialog-error" role="alert">
  4. <p><strong>{{ _('Error!') }}</strong> {{ _('Engines cannot retrieve results.') }}</p>
  5. {% for engine_name, error_type in unresponsive_engines %}
  6. <p>{{- '' -}}
  7. {{- engine_name }} (
  8. <a href="{{ url_for('stats', engine=engine_name|e) }}" title="{{ _('View error logs and submit a bug report') }}">
  9. {{- error_type -}}
  10. </a> ){{- '' -}}
  11. </p>
  12. {%- endfor %}
  13. <p><small>{{ _('Please, try again later or find another SearXNG instance.') }} (<a href="{{ get_setting('brand.public_instances') }}">{{ _('Public instances') }}</a>) </small></p>
  14. </div>
  15. {% else %}
  16. <div class="dialog-error" role="alert">
  17. <p><strong>{{ _('Sorry!') }}</strong></p>
  18. <p>{{ _('we didn\'t find any results. Please use another query or search in more categories.') }}</p>
  19. </div>
  20. {% endif %}