lookyloo/website/web/templates/tree_body_hashes.html

36 lines
1.1 KiB
HTML
Raw Normal View History

{% from "macros.html" import popup_icons_response %}
2024-11-08 21:50:05 +01:00
<table id="bodyHashesTable" class="table table-striped" style="width:100%">
<thead>
<tr>
<th>Number of captures</th>
<th>File type</th>
<th>Ressource URL in capture</th>
<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>{{ info['total_captures'] }}</td>
<td>
{{popup_icons_response(info['node'], tree_uuid)}}
</td>
<td>
<p class="text-break">{{ info['node'].name }}</p>
<button type="button" class="btn btn-link openNewTab" data-capture="{{tree_uuid}}" data-hostnode="{{info['node'].uuid}}">Show on tree</button>
</td>
<td>
<span class="d-inline-block text-truncate" style="max-width: 200px;">
<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>
</span>
</td>
</tr>
{% endfor %}
</tbody>
</table>