lookyloo/website/web/templates/hhh_details.html

18 lines
474 B
HTML
Raw Normal View History

2023-07-21 15:48:20 +02:00
{% extends "main.html" %}
{% from 'bootstrap5/utils.html' import render_messages %}
{% block title %}{{ hhh }}{% endblock %}
{% block content %}
<center>
<h2>{{ hhh }}</h2>
</center>
<p>The same HTTP Headers Hash was seen in these captures:</p>
<ul>
{% for capture_uuid, hostnode_uuid, title in captures %}
<li><a href="{{ url_for('tree', tree_uuid=capture_uuid, node_uuid=hostnode_uuid) }}">{{ title }}</a></li>
{% endfor %}
</ul>
{% endblock %}