no_results.html 613 B

123456789101112
  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. <p><small>{{ _('Please, try again later or find another searx instance.') }}</small></p>
  6. </div>
  7. {% else %}
  8. <div class="alert alert-info fade in" role="alert">
  9. <strong class="lead">{{ icon('info-sign') }} {{ _('Sorry!') }}</strong>
  10. {{ _('we didn\'t find any results. Please use another query or search in more categories.') }}
  11. </div>
  12. {% endif %}