{% extends "base.html" %} {% load static %} {% block title %}{{ title }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{{ title }}

{% if mqtt_config %}
MQTT Configuration
Broker: {{ mqtt_config.broker_host }}:{{ mqtt_config.broker_port }}
Client ID: {{ mqtt_config.client_id }}
Configuration: {{ mqtt_config.name }}
HMAC: {% if mqtt_config.use_hmac %} Enabled (SHA-256) {% else %} Disabled {% endif %}
Authentication: {% if mqtt_config.username %} Username/Password {% else %} None {% endif %}
Config: {% if mqtt_config.enabled %} Active {% else %} Disabled {% endif %}
Broker: {% if broker_connected == 'connected' %} Connected {% elif broker_connected == 'disconnected' %} Disconnected {% else %} Unknown {% endif %}
{% else %}
No MQTT Configuration Found

Please configure MQTT settings in the NEMO admin interface.

{% endif %}

Latest 50 Events (refreshes every 3s)

▼ Debug
{% endblock %} {% block extra_js %} {% endblock %}