{% extends "base.html" %} {% block title %}{{ device.name }} · Devices · LibreSignage{% endblock %} {% block head %}{% endblock %} {% block content %} {% if enrollment and enrollment.device_id == device.id %} {% endif %}

Physical monitors

Each monitor maps to one independent LibreSignage screen.

{% for monitor in monitors %}

{{ monitor.label }}{% if monitor.is_primary %} Primary{% endif %} {% if not monitor.connected %}Missing{% elif monitor.match_state == 'unresolved' %}Unresolved{% endif %}

{{ monitor.width }}×{{ monitor.height }} at {{ monitor.x }},{{ monitor.y }} · {{ monitor.scale }}x · {{ monitor.match_state }}

{% if monitor.screen_id %}{{ monitor.screen_name }}{% else %}Waiting for assignment{% endif %}
{% if monitor.screen_id %}
{% elif not device.revoked_at %}
{% endif %}
{% else %}

No monitors reported

Enroll and start the client to inventory this PC's displays.

{% endfor %}
{% endblock %}