mirror of https://github.com/CIRCL/lookyloo
35 lines
1.0 KiB
HTML
35 lines
1.0 KiB
HTML
|
<script type="text/javascript">
|
||
|
new DataTable('#faviconsTable', {
|
||
|
columnDefs: [{ width: '10%', targets: 0 },
|
||
|
{ width: '40%', targets: 1 },
|
||
|
{ width: '40%', targets: 2 },
|
||
|
{ width: '10%', targets: 3 }],
|
||
|
});
|
||
|
</script>
|
||
|
|
||
|
|
||
|
<h5 class="text-center">Click on the identifier 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>Identifier</th>
|
||
|
<th>Identifier type</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for number_captures, identifier_type, identifier in identifiers %}
|
||
|
<tr>
|
||
|
<td>{{ number_captures }}</td>
|
||
|
<td>
|
||
|
<a href="#identifierDetailsModal" data-remote="{{ url_for('identifier_details', identifier_type=identifier_type, identifier=identifier) }}"
|
||
|
data-bs-toggle="modal" data-bs-target="#identifierDetailsModal" role="button">
|
||
|
{{ identifier }}
|
||
|
</a>
|
||
|
</td>
|
||
|
<td>{{identifier_type}}</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
</table>
|