{% extends "base.html" %} {% block title %}Edit {{ device.hostname }} – {{ app_name }}{% endblock %} {% block page_title %}Edit Device{% endblock %} {% block content %}
Edit: {{ device.hostname }}
Monitoring Fields

WMT Client Fields
Leave empty if this is not a WMT client device.
{% if device.mac_address %}
Config last updated: {{ device.config_updated_at | local_dt('%Y-%m-%d %H:%M:%S') if device.config_updated_at else '—' }}
Info reviewed at: {{ device.info_reviewed_at | local_dt('%Y-%m-%d %H:%M:%S') if (device.info_reviewed_at and device.info_reviewed_at.year > 1970) else 'Never reviewed' }}
Last seen: {{ device.last_seen | local_dt('%Y-%m-%d %H:%M:%S') if device.last_seen else 'Never' }}
{% endif %}
Cancel
{% endblock %}