{% extends "base.html" %} {% block title %}Devices · LibreSignage{% endblock %} {% block head %}{% endblock %} {% block content %} {% if enrollment %} {% endif %}
{% for device in devices %}

{{ device.name }}

{% if device.revoked_at %}Revoked{% elif online[device.id] %}Online{% elif device.enrolled_at %}Offline{% else %}Awaiting enrollment{% endif %}

{{ monitors[device.id]|length }} {{ 'monitor' if monitors[device.id]|length == 1 else 'monitors' }} · {{ device.platform or 'Platform not reported' }} · {{ device.client_version or 'Version not reported' }}

Manage
{% else %}

No devices enrolled

Create a device, then enter its one-time code on the player PC.

{% endfor %}
{% endblock %}