{% set page_group = "admin" %} {% include 'components/head.html' %} {# SweetAlert2 for notifications (required for async/await and preConfirm) #}
{% include 'components/nav-account.html' %}
{% include 'components/alerts.html' %}

Layout Management

Back to Designer {% if canManage and floorPlan %} {% endif %}
{% if not floorPlan %}

No Floor Plan

Create a floor plan first before managing layouts.

Create Floor Plan
{% elseif layouts | length == 0 %}

No Layouts Yet

Create your first layout to start managing category assignments.

{% if canManage %} {% endif %}
{% else %}
{% for layout in layouts %}
{{ layout.name }}
{{ layout.status | capitalize }}
Type
{{ layout.layoutType | capitalize }}
Created
{{ layout.createdAt | date('M j, Y') }}
{% if layout.activationDate %}
Activation
{{ layout.activationDate | date('M j, Y') }}
{% endif %} {% if layout.eventId %}
Linked Event
Event #{{ layout.eventId }}
{% endif %}
{% if layout.description %}

{{ layout.description }}

{% endif %}
{% endfor %}
{% endif %}
{% include 'components/footer.html' %}