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

{{ title }}

{% if mqtt_config %}
HMAC {% if mqtt_config.use_hmac %} Enabled (SHA-256) {% else %} Disabled {% endif %}
Authentication {% if mqtt_config.username %} Username/Password {% else %} None {% endif %}
Connection {% if broker_connected == 'connected' %} Connected {% elif broker_connected == 'disconnected' %} Disconnected {% else %} Unknown {% endif %}
Last reload
Last error
Status API Loading…
{% else %}
No MQTT Configuration Found

Please configure MQTT settings in the NEMO admin interface.

{% endif %}
{% endblock %} {% block extra_js %} {% endblock %}