no_results.html 1011 B

1234567891011121314151617181920
  1. {% from 'oscar/macros.html' import icon %}
  2. {% if unresponsive_engines %}
  3. <div class="alert alert-danger fade in" role="alert">
  4. <p><strong class="lead">{{ icon('remove-sign') }} {{ _('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="alert alert-info fade in" role="alert">
  17. <strong class="lead">{{ icon('info-sign') }} {{ _('Sorry!') }}</strong>
  18. {{ _('we didn\'t find any results. Please use another query or search in more categories.') }}
  19. </div>
  20. {% endif %}