mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-21 11:02:10 +01:00
rename default templates package from ui/* templates to templates/* rename default subdirs: warcs -> archive, cdx -> indexes
26 lines
676 B
HTML
26 lines
676 B
HTML
<html>
|
|
<body>
|
|
<h2>Pywb Proxy Collection Selector</h1>
|
|
{% 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>
|