no_results.html 965 B

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