lookyloo/website/web/templates/tree_hashes_types.html

34 lines
947 B
HTML

<script type="text/javascript">
new DataTable('#identifiersTable', {
columnDefs: [{ width: '20%', targets: 0 },
{ width: '40%', targets: 1 },
{ width: '40%', targets: 2 }],
});
</script>
<h5 class="text-center">Click on the hash to see the other captures it's been found in</h5>
<table id="identifiersTable" class="table table-striped" style="width:100%">
<thead>
<tr>
<th>Number of captures</th>
<th>Hash</th>
<th>Hash type</th>
</tr>
</thead>
<tbody>
{% for number_captures, hash_type, hash in hashes %}
<tr>
<td>{{ number_captures }}</td>
<td>
<a href="#captureHashesTypesDetailsModal" data-remote="{{ url_for('capture_hash_details', hash_type=hash_type, h=hash) }}"
data-bs-toggle="modal" data-bs-target="#captureHashesTypesDetailsModal" role="button">
{{ hash }}
</a>
</td>
<td>{{hash_type}}</td>
</tr>
{% endfor %}
</tbody>
</table>