mirror of https://github.com/CIRCL/lookyloo
38 lines
906 B
HTML
38 lines
906 B
HTML
<script type="text/javascript">
|
|
new DataTable('#faviconDetailsTable', {
|
|
columnDefs: [{ width: '40%', targets: 0 },
|
|
{ width: '40%', targets: 1 },
|
|
{ width: '20%', targets: 2 }],
|
|
});
|
|
</script>
|
|
|
|
<center>
|
|
<img src="data:{{mimetype}};base64,{{ b64_favicon }}" style="width:64px;height:64px;"/>
|
|
</center>
|
|
<table id="faviconDetailsTable" class="table table-striped" style="width:100%">
|
|
<thead>
|
|
<tr>
|
|
<th>Capture Title</th>
|
|
<th>Landing page</th>
|
|
<th>Capture Time</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for capture_uuid, title, landing_page, capture_time in captures %}
|
|
<tr>
|
|
<td>
|
|
<a href="{{ url_for('tree', tree_uuid=capture_uuid) }}">
|
|
{{ title }}
|
|
</a>
|
|
</td>
|
|
<td>
|
|
{{landing_page}}
|
|
</td>
|
|
<td>
|
|
{{capture_time}}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|