{% extends "base.html" %} {% block title %}{% if device %}Edit Device{% else %}New Device{% endif %} – WMT – {{ app_name }}{% endblock %} {% block page_title %}{% if device %}Edit Device{% else %}New Device{% endif %}{% endblock %} {% block content %}
{% if device %} Edit: {{ device.mac_address }} {% else %} Register New WMT Device {% endif %}
{% if device %} MAC cannot be changed after registration. {% else %} {% endif %}

Chrome Launch – Production URL Override

Leave blank to use the global default URL configured in WMT Settings. Fill in only if this device needs a different production page.

{% if device and device.custom_chrome_url %}
This device uses a custom URL instead of the global default. Clear the field to revert to the global setting.
{% else %}
Using global default production URL.
{% endif %}
{% if device %}
Last seen: {{ device.last_seen | local_dt('%Y-%m-%d %H:%M:%S') if device.last_seen else 'Never' }}
Config 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' }}
Updated automatically when you save this form, accept or reject a device request.
{% endif %}
Cancel
{% endblock %}