{% extends "base.html" %} {% block title %}Protocols - {{ title }}{% endblock %} {% block content %}

Discovered Protocols

{% if protocols %}
{% for protocol in protocols %}
{{ protocol.protocol_name }}

{{ protocol.filename }}

Confidence:
{{ (protocol.confidence * 100)|round(1) }}%

Messages: {{ protocol.message_count }}

Fields: {{ protocol.field_count }}

View Details
{% endfor %}
{% else %}
No protocols discovered yet. Upload a file to analyze.
{% endif %}
{% endblock %}