mirror of
https://github.com/webrecorder/pywb.git
synced 2025-03-20 02:39:13 +01:00
rename query -> views wbhandler queries index, replayer and renders via view new feature: 'cdx_' modifier can be used to render cdx from any request
12 lines
353 B
HTML
12 lines
353 B
HTML
<body>
|
|
<b>{{ cdx_lines | length }} captures of {{ url }}</b>
|
|
<table id="captures">
|
|
{% for cdx in cdx_lines %}
|
|
<tr>
|
|
<td><a href="{{ prefix}}{{ cdx.timestamp }}/{{ url }}">{{ cdx.timestamp }}</a></td>
|
|
<td><a href="https://archive.org/details/{{ cdx['filename'] }}">{{ cdx['filename'] }}</a></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
</body>
|