mirror of https://github.com/CIRCL/lookyloo
26 lines
773 B
HTML
26 lines
773 B
HTML
|
|
<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>
|