{% extends "base.html" %} {% block title %}{{ layout.name }} · LibreSignage{% endblock %} {% block content %}
← All layouts

{{ layout.name }}

{{ layout.preset_definition.name }}
Preview

Zones

Playlist changes are staged until screens using this layout are published.

{% for zone in zones %}
Immutable key: {{ zone.zone_key }}
{% endfor %}
{% if not layout.preset_definition.fixed %}

12 × 12 snap-grid editor

Drag or resize zones on the grid, or use the exact numeric fields. Base zones cannot overlap; mark a zone as an overlay to permit overlap.

{% for zone in zones %}
{{ zone.label }} {{ zone.zone_key }}
{% for field, value in [('row',zone.row),('column',zone.column),('width',zone.width),('height',zone.height),('layer',zone.layer)] %}
{% endfor %}
{% if zones|length > 1 %}{% endif %}
{% endfor %}
{% endif %} {% endblock %} {% block scripts %}{% if not layout.preset_definition.fixed %}{% endif %}{% endblock %}