{% extends 'layouts/admin.html' %} {% block main %}

Display Management

{{ display.name }}

{{ display.location or 'No location assigned' }}

Back Open player Edit display

Display Profile

Operational settings for this screen.

{{ display_statuses[display.status] }}
Location
{{ display.location or 'Unassigned' }}
Resolution
{{ display.resolution_label }}
Orientation
{{ display_orientations[display.orientation] }}
Created
{{ display.created_at.strftime('%b %d, %Y') }}

Notes

{{ display.notes or 'No notes have been added for this display.' }}

Actions

Player Access

Pair and remotely disable this display client.

{% if display.player_token_hash and display.player_token_enabled %} Enabled {% elif display.player_token_hash %} Disabled {% else %} Not paired {% endif %}
{% if new_player_token is defined %} {% endif %}
Created
{% if display.player_token_created_at %} {{ display.player_token_created_at.strftime('%b %d, %Y %I:%M %p') }} {% else %} Never {% endif %}
Last paired
{% if display.player_token_last_used_at %} {{ display.player_token_last_used_at.strftime('%b %d, %Y %I:%M %p') }} {% else %} Never {% endif %}
{% if display.player_token_hash and display.player_token_enabled %}
{% elif display.player_token_hash %}
{% endif %}

Assigned Media

Media assets currently linked to this display.

Add media
{% if display.media_assets %}
{% for media in display.media_assets %} {% endfor %}
Title Type Actions
{{ media.title }} {{ media.media_type.title() }} Edit
{% else %}

No media assigned

Assign media from the media create or edit form.

{% endif %}
{% endblock %}