mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-14 15:53:28 +01:00
* Reworked query.js to know the difference between date search and advanced searching. Exposed cdx api's through the query html page - from, to - matchType - filter Added more appealing styling to the error, index, not-found, query, and search templates Updated the included jquery and boostrap static files to jQuery v3.3.1, Bootstrap v4.1.3 Implemented optionally using a web worker for making the cdx api request and processing the results Documented the code * ensure the display count str function uses the correct "first" value * added view all captures for an result displayed in the advanced results view query worker now sends over the recordCount as an integer and as a formatted string moved the search button to the right after advanced options * tests: fixed test_intergration.py:test_static_nested_dir failing due to updates
26 lines
800 B
HTML
26 lines
800 B
HTML
<html>
|
|
<body>
|
|
<h2>Pywb Proxy Collection Selector</h2>
|
|
{% if coll %}
|
|
<p>
|
|
Current collection is: <b>{{ coll }}</b>
|
|
</p>
|
|
{% else %}
|
|
<p>You have attempted to load the url <b>{{ url }}</b>, but there are multiple collections available.</p>
|
|
{% endif %}
|
|
|
|
<p>Please select which collection you would like to use (You will be redirected back to <b>{{ url }}</b>):
|
|
</p>
|
|
|
|
<ul>
|
|
{% for route in routes %}
|
|
{% if route.path and route | is_wb_handler %}
|
|
<li><a href="//{{ route.path }}{{ route_temp }}">{{ route.path }}</a></li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
<p>(Once selected, you will not be prompted again, however you can return to this page to switch collections.)</p>
|
|
</body>
|
|
</html>
|