1
0
mirror of https://github.com/webrecorder/pywb.git synced 2025-03-19 18:29:37 +01:00
pywb/ui/query.html

12 lines
353 B
HTML
Raw Normal View History

<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>