2014-01-17 16:24:36 -08:00
|
|
|
<body>
|
2014-01-29 15:07:45 -08:00
|
|
|
<h2>pywb Sample Calendar Results</h2>
|
|
|
|
<b>{{ cdx_lines | length }}</b> captures of <b>{{ url }}</b>
|
|
|
|
<table id="captures" style="border-spacing: 10px;">
|
|
|
|
<tr>
|
|
|
|
<th>Capture</th>
|
2014-01-31 10:04:21 -08:00
|
|
|
<th>Status</th>
|
|
|
|
<th>Original Url</th>
|
2014-01-29 15:07:45 -08:00
|
|
|
<th>Archive File</th>
|
|
|
|
</tr>
|
2014-01-31 10:04:21 -08:00
|
|
|
{% for cdx in cdx_lines %}
|
2014-01-29 15:07:45 -08:00
|
|
|
<tr style="{{ 'font-weight: bold' if cdx['mimetype'] != 'warc/revisit' else '' }}">
|
2014-01-31 10:04:21 -08:00
|
|
|
<td><a href="{{ prefix }}{{ cdx.timestamp }}/{{ url }}">{{ cdx['timestamp'] | format_ts}}</a></td>
|
2014-01-29 15:07:45 -08:00
|
|
|
<td>{{ cdx['filename'] }}</td>
|
2014-01-31 10:04:21 -08:00
|
|
|
<td>{{ cdx['statuscode'] }}</td>
|
|
|
|
<td>{{ cdx['originalurl'] }}</td>
|
2014-01-29 15:07:45 -08:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
2014-01-17 16:24:36 -08:00
|
|
|
</table>
|
2014-01-31 10:04:21 -08:00
|
|
|
<p>
|
|
|
|
<i><b>* Unique captures are bold.</b> Other captures are duplicates of a previous capture.</i>
|
|
|
|
</p>
|
2014-01-17 16:24:36 -08:00
|
|
|
</body>
|