lookyloo/website/web/templates/hhhashes.html

42 lines
916 B
HTML

{% extends "main.html" %}
{% from 'bootstrap5/utils.html' import render_messages %}
{% block title %}HTTP Headers Hashes lookup{% endblock %}
{% block scripts %}
{{ super() }}
<script type="text/javascript">
$('#table').DataTable( {
"order": [[ 1, "desc" ]],
"pageLength": 500
});
</script>
{% endblock %}
{% block content %}
<div class="table-responsive-sm">
<table id="table" class="table">
<thead>
<tr>
<th>HH Hash</th>
<th style="width:10%">Frequency</th>
<th style="width:10%">Number of captures</th>
</tr>
</thead>
<tbody>
{% for hhh, freq, number_captures in hhhashes %}
<tr>
<td >
<a href="{{ url_for('hhh_detail', hhh=hhh) }}">{{ hhh }}</a>
</td>
<td>{{ freq }}</td>
<td>{{ number_captures }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}