apis.html 1.2 KB

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