search_results.html 499 B

1234567891011121314151617
  1. {% extends "layout.html" %}
  2. {% from 'project_list_macro.html' import project_list %}
  3. {% block container %}
  4. <div style="margin-top: 25px;">
  5. <form>
  6. <div class="input-append">
  7. <input class="input-xxlarge" name="q" type="text" value="{{ search_terms }}">
  8. <button type="submit" class="btn">{{ _("Search") }}</button>
  9. </div>
  10. </form>
  11. {% if results -%}
  12. {{ project_list(results) }}
  13. {%- else -%}
  14. {{ _("No ISP matching your query was found :-(") }}
  15. {%- endif %}
  16. </div>
  17. {% endblock %}