2022-08-01 17:51:43 +02:00
|
|
|
<script type="text/javascript">
|
2024-02-20 17:01:16 +01:00
|
|
|
new DataTable('#bodyHashesTable', {
|
|
|
|
columnDefs: [{ width: '10%', targets: 0 },
|
|
|
|
{ width: '10%', targets: 1 },
|
|
|
|
{ width: '60%', targets: 2 },
|
|
|
|
{ width: '20%', targets: 3 }],
|
|
|
|
});
|
2022-08-01 17:51:43 +02:00
|
|
|
</script>
|
|
|
|
|
2024-02-20 17:01:16 +01:00
|
|
|
<table id="bodyHashesTable" class="table table-striped" style="width:100%">
|
2022-08-01 17:51:43 +02:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>File type</th>
|
|
|
|
<th>Captures total</th>
|
2023-07-31 16:54:37 +02:00
|
|
|
<th>Ressource</th>
|
2022-08-01 17:51:43 +02:00
|
|
|
<th>Hash (sha512)</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for body_hash, info in body_hashes.items() %}
|
|
|
|
{% set icon_info = get_icon(info['node'].generic_type) %}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<a href="{{ url_for('get_ressource', tree_uuid=tree_uuid, node_uuid=info['node'].uuid) }}">
|
|
|
|
<img src="{{ url_for('static', filename=icon_info['icon']) }}" alt="{{ icon_info['tooltip'] }}"
|
|
|
|
width="21" height="21"
|
|
|
|
{% if info['node'].generic_type == "image" %}
|
|
|
|
data-bs-toggle="tooltip" data-bs-placement="left" data-bs-html="true" data-container="#bodyHashesTable"
|
|
|
|
title='<img class="ressource_preview" src="{{ url_for('get_ressource_preview', tree_uuid=tree_uuid, node_uuid=info['node'].uuid) }}"/> </br>Click to download.'
|
|
|
|
{% else %}
|
|
|
|
data-bs-toggle="tooltip" data-bs-placement="left" data-bs-html="true" data-container="#bodyHashesTable"
|
|
|
|
title="{{icon_info['tooltip']}} <br/>Click to download."
|
|
|
|
{% endif %}
|
|
|
|
/>
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
<td>{{ info['total_captures'] }}</td>
|
2023-07-31 16:54:37 +02:00
|
|
|
<td><p class="text-break">{{ info['node'].name }}</p></td>
|
2022-08-01 17:51:43 +02:00
|
|
|
<td>
|
2023-07-31 16:54:37 +02:00
|
|
|
<span class="d-inline-block text-truncate" style="max-width: 200px;">
|
2024-02-20 17:01:16 +01:00
|
|
|
<a href="#bodyHashDetailsModal" data-remote="{{ url_for('body_hash_details', body_hash=body_hash) }}"
|
|
|
|
data-bs-toggle="modal" data-bs-target="#bodyHashDetailsModal" role="button">
|
|
|
|
{{body_hash}}
|
|
|
|
</a>
|
2023-07-31 16:54:37 +02:00
|
|
|
</span>
|
2022-08-01 17:51:43 +02:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|