{% extends "base.html" %} {% block title %}Edit device - {{ device.name }} - MikroMon{% endblock %} {% block content %}

Edit device

{{ device.name }} ({{ device.host }})
Back
{{ form.hidden_tag() }}
{{ form.name(class_="form-control") }}
{{ form.host(class_="form-control") }}
{{ form.rest_port(class_="form-control") }}
{{ form.rest_base_path(class_="form-control") }}
{{ form.username(class_="form-control") }}
{{ form.password(class_="form-control", placeholder="Leave blank to keep unchanged") }}
Leave blank to keep the current password.
{{ form.allow_insecure_tls(class_="form-check-input") }}
{{ form.ssh_enabled(class_="form-check-input", id="sshEnabled") }}
{{ form.ssh_port(class_="form-control") }}
Used only when SSH is enabled.

Notes
  • Changing credentials updates the encrypted secret stored in the database.
  • If REST fails, verify host/port/path and TLS setting.
{% endblock %}