2024-03-14 01:13:24 +01:00
|
|
|
{% from "macros.html" import shorten_string %}
|
|
|
|
|
2024-09-04 16:30:33 +02:00
|
|
|
<script type="text/javascript" nonce="{{ csp_nonce() }}">
|
2024-03-14 17:27:39 +01:00
|
|
|
new DataTable('#identifierDetailsTable', {
|
2024-03-14 01:13:24 +01:00
|
|
|
order: [[ 0, "desc" ]],
|
|
|
|
columnDefs: [{ width: '30%',
|
|
|
|
targets: 0,
|
|
|
|
render: (data) => {
|
|
|
|
const date = new Date(data);
|
|
|
|
return date.getFullYear() + '-' + (date.getMonth() + 1).toString().padStart(2, "0") + '-' + date.getDate().toString().padStart(2, "0") + ' ' + date.toTimeString();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{ width: '30%', targets: 1 },
|
|
|
|
{ width: '50%', targets: 2 }],
|
|
|
|
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<center>
|
|
|
|
<h5>{{identifier_type}}: {{identifier}}</h5>
|
|
|
|
</center>
|
|
|
|
<table id="identifierDetailsTable" class="table table-striped" style="width:100%">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Capture Time</th>
|
|
|
|
<th>Capture Title</th>
|
|
|
|
<th>Landing page</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for capture_uuid, title, landing_page, capture_time in captures %}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
{{capture_time}}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<a href="{{ url_for('tree', tree_uuid=capture_uuid) }}">
|
|
|
|
{{ title }}
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<span class="d-inline-block text-break" style="max-width: 400px;">
|
|
|
|
{{ landing_page }}
|
|
|
|
</span>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|