{% extends BASE_TEMPLATE|default:"handyhelpers/handyhelpers_base_bs5.htm" %} {% load static %} {% load handyhelper_tags %} {% block local_head %} {% endblock %} {% block content %}
{% if title or subtitle %}
{{ title }}
{{ subtitle|safe }}
{% endif %}
{{ counters.bytes_sent|byte_size }}
Bytes Sent
{{ counters.bytes_recv|byte_size }}
Bytes Received
{{ counters.packets_sent|byte_size }}
Packets Sent
{{ counters.packets_recv|byte_size }}
Packets Received
{{ counters.errin }}
Errors In
{{ counters.errout }}
Errors Out
{{ counters.dropin }}
Drops In
{{ counters.dropout }}
Drops Out
Network Connections ({{ connection_list|length }})
    {% for connection in connection_list %}
  • laddr:{{ connection.laddr.ip }}
    lport:{{ connection.laddr.port }}
    family:{{ connection.family.name }}
    fd:{{ connection.fd }}
    status:{{ connection.status }}
    raddr:{{ connection.raddr.ip }}
    rport:{{ connection.raddr.port }}
    type:{{ connection.type }}
    pid:{{ connection.pid }}
    {% endfor %}
{% include 'handyhelpers/htmx/bs5/generic_modal.htm' %} {% endblock content %}