{% extends "BaseNavbar.html" %} {% block main %}
{% with messages = get_flashed_messages() %} {% if messages %} {% for msg in messages %}
{{ msg }}
{% endfor %} {% endif %} {% endwith %}
{% if notification %}
Notice: {{ notification }}
{% endif %}

Listeners

All listeners can be created, started, and stopped from here.

Configured listeners:

{% for key_2 in test_data %} Name: {{ test_data[key_2].common_name }}
Protocol: {{ test_data[key_2].type }}
Port: {{ test_data[key_2].port }}
{% if test_data[key_2].state == True %} State: Running

{% elif test_data[key_2].state == False %} State: Stopped
{% endif %}
{% endfor %}
{% endblock %}