{% extends "admin/base.html" %} {% block title %}{{ "Edit" if page else "New" }} {{ page_type_label }} - Admin - {{ site_name() }}{% endblock %} {% block head %} {% endblock %} {% block admin_content %}

{{ "Edit" if page else "New" }} {{ page_type_label }}

{{ "Update " ~ page_type_name ~ " details" if page else "Create a new " ~ page_type_name }}

The URL path for this {{ page_type_name }} (e.g., "about" becomes /about)
Publication Lower numbers appear first (default: 0) Leave empty to publish immediately when published is checked
SEO Settings
Attachments
{% for asset in page_assets %}
{% if asset.content_type.startswith("image/") %} {{ asset.filename }} {% endif %} {% if not asset.content_type.startswith("image/") %} {{ asset.filename.rsplit(".", 1)[-1] | upper if "." in asset.filename else "FILE" }} {% endif %} {% if asset.content_type.startswith("image/") %} {% endif %} {{ asset.filename }} {{ "%.1f" | format(asset.size / 1024) }}KB
{% endfor %}
Drop files here or click to upload
Cancel {% if page %} View History {% endif %}
{% endblock %} {% block scripts %} {% endblock %}