{% extends 'devices/base.html' %}{% block content %}← Your devices

{{ device.label }}

{{ device.status }}

Connection

Last connected
{{ device.last_seen|default:'Not yet' }}
Software
{{ device.software_version|default:'Not reported' }}
Settings applied
{{ device.reported_revision }} of {{ device.config_revision }}
Device settings
{% csrf_token %}

Updates

Last check: {{ device.update_status.status|default:'Not checked' }}

Update installation is not available in this development release.

{% csrf_token %}
{% for command in commands %}{{ command.created_at }} · {{ command.result|default:'Waiting for device' }}{% endfor %}

Appointments

These appointments are saved on the device for use without internet.

Add appointment {% for event in appointments %}
{{ event.title }}{{ event.display_range }}
{% csrf_token %}
{% empty %}

No appointments added yet.

{% endfor %}

Access and recovery

Rotate the device credential during routine maintenance. The old credential works for up to seven days or until the new one is used.

{% if device.rotation_id %}

Rotation pending; old credential expires {{ device.rotation_deadline }}.

{% endif %}

Revoking access immediately disconnects this device from management. Cached appointments remain available locally. Reconnect through a new setup code and local device recovery.

{% csrf_token %}
{% csrf_token %}

Recent activity

{% endblock %}