{% extends "admin/base.html" %} {% block title %}{{ page_type_label_plural }} - Admin - {{ site_name() }}{% endblock %} {% block admin_content %}

{{ page_type_label_plural }}

Manage {{ page_type_plural }}

New {{ page_type_label }}
{% for page in pages %} {% set page_state = page_states.get(page.id|string, {}) %} {% endfor %}
Order Title Slug Status Created Actions
{{ page.order }} {% if page_state.locked %} {{ page.title }} Locked {% for badge in page_state.badges %} {{ badge }} {% endfor %} {% else %} {{ page.title }} {% endif %} /{{ page.slug }} {% if page.is_published %} {% if page.publish_at and page.publish_at > now() %} Scheduled {{ page.publish_at.strftime('%b %d, %Y %H:%M') }} {% else %} Published {% endif %} {% else %} Draft {% endif %} {% if page_state.source_origin %} {{ page_state.source_origin }} {% endif %} {{ page.created_at.strftime('%Y-%m-%d') }} View {% if not page_state.locked %} {% if page.is_published %}
{% else %}
{% endif %}
{% endif %}
{% if not pages %}

No {{ page_type_plural }} found.

{% endif %} {% endblock %}