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

Pages

Manage site pages

New Page
{% for page in pages %} {% endfor %}
Order Title Slug Status Created Actions
{{ page.order }} {{ page.title }} /{{ 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 %} {{ page.created_at.strftime('%Y-%m-%d') }} Edit {% if page.is_published %}
{% else %}
{% endif %}
{% if not pages %}

No pages found.

{% endif %} {% endblock %}