{% extends 'dashboard/base.html' %} {% block title %}{{ page.title }}{% endblock %} {% block content %}

{{ page.title }}

← All pages

{% csrf_token %}

Page Settings

{{ meta_form.title }} {% if meta_form.is_homepage.help_text %}

{{ meta_form.is_homepage.help_text }}

{% endif %} {{ meta_form.nav_group }} {{ meta_form.nav_priority }}
{% for panel in panels %}
{{ panel.label }}Section {{ forloop.counter }}
{% for field in panel.text_fields %} {% if field.widget == 'textarea' %} {% else %} {% endif %} {% endfor %} {% for slot in panel.media_slots %}
{% if slot.current %} {% endif %}
{% endfor %}
{% endfor %}

SEO & Web Address

{% if page.is_homepage %}

This is your homepage — it always lives at /.

{% else %} {{ meta_form.slug }} {% if meta_form.slug.errors %}

{{ meta_form.slug.errors|first }}

{% endif %}

Currently: /{{ page.slug }}/

{% endif %} {{ meta_form.meta_title }} {{ meta_form.meta_description }}
Don't forget to save your changes

Manage Sections

Add or remove content blocks on this page. Drag rows with to reorder, or use the arrows.

{% for panel in panels %} {% endfor %}
#Section
{{ forloop.counter }} {{ panel.label }}
{% csrf_token %}
{% csrf_token %}
{% csrf_token %}
+ Add a section
{% csrf_token %}
{# ── Services / Testimonials / Gallery management: separate forms, not nested inside the form above ── #} {% for panel in panels %} {% if panel.manages_services %}

{{ panel.label }} — Service Cards

{% for service in panel.services %} {% empty %} {% endfor %}
ServiceDescription
{{ service.title }} {{ service.description|truncatechars:60 }}
{% csrf_token %}
No services yet.
+ Add a service
{% csrf_token %} {{ service_form.title }} {{ service_form.description }} {{ service_form.icon }}
{% endif %} {% if panel.manages_testimonials %}

{{ panel.label }}

{% for t in panel.testimonials %} {% empty %} {% endfor %}
NameQuote
{{ t.name }}
{{ t.role }}
{{ t.content|truncatechars:60 }}
{% csrf_token %}
No testimonials yet.
+ Add a testimonial
{% csrf_token %} {{ testimonial_form.name }} {{ testimonial_form.role }} {{ testimonial_form.content }} {{ testimonial_form.rating }} {{ testimonial_form.image }}
{% endif %} {% if panel.manages_faqs %}

{{ panel.label }}

{% for faq in panel.faqs %} {% empty %} {% endfor %}
QuestionAnswer
{{ faq.question }} {{ faq.answer|truncatechars:60 }}
{% csrf_token %}
No FAQs yet.
+ Add a FAQ
{% csrf_token %} {{ faq_form.question }} {{ faq_form.answer }}
{% endif %} {% if panel.manages_gallery %}

{{ panel.label }} — Images

Drag & drop images here, or click to upload
{% for img in panel.gallery_images %}
{% endfor %}
{% endif %} {% endfor %} {% endblock %}