apis.html 1.1 KB

123456789101112131415161718192021222324
  1. <div id="apis" role="complementary" aria-labelledby="apis-title">
  2. <details>
  3. <summary class="title" id="apis-title">{{ _('Download results') }}</summary>
  4. {%- for output_type in search_formats -%}
  5. <div class="left">
  6. <form method="{{ method or 'POST' }}" action="{{ url_for('search') }}">
  7. <input type="hidden" name="q" value="{{ q|e }}">
  8. {%- for category in selected_categories -%}
  9. <input type="hidden" name="category_{{ category }}" value="1">
  10. {%- endfor -%}
  11. <input type="hidden" name="pageno" value="{{ pageno }}">
  12. <input type="hidden" name="language" value="{{ current_language }}">
  13. <input type="hidden" name="time_range" value="{{ time_range }}">
  14. <input type="hidden" name="safesearch" value="{{ safesearch }}">
  15. <input type="hidden" name="format" value="{{ output_type }}">
  16. {%- if timeout_limit -%}
  17. <input type="hidden" name="timeout_limit" value="{{ timeout_limit|e }}" >
  18. {%- endif -%}
  19. <input type="submit" role="link" value="{{ output_type }}">
  20. </form>
  21. </div>
  22. {%- endfor -%}
  23. </details>
  24. </div>