{% extends "base.html" %} {% block title %}صفحات الهبوط{% endblock %} {% block content %}

صفحات الهبوط

إدارة صفحات الهبوط التي تم إنشاؤها بالذكاء الاصطناعي

{{ landing_pages|length }}
إجمالي الصفحات
{{ landing_pages|selectattr('is_public')|list|length }}
منشورة
{{ landing_pages|selectattr('status', 'equalto', 'ready')|list|length }}
جاهزة للنشر
{{ landing_pages|selectattr('status', 'equalto', 'generating')|list|length }}
قيد التوليد
{% if landing_pages %}
{% for page in landing_pages %}

{% set display_name = page.name.replace(' Landing Page', '') %} {% if display_name|length > 50 %} {{ display_name[:50] }}... {% else %} {{ display_name }} {% endif %} {% if page.report %} {{ page.report.project_name[:40] }}{% if page.report.project_name|length > 40 %}...{% endif %} {% else %} N/A {% endif %}

{% if page.status == 'generating' %}جاري التوليد {% elif page.status == 'ready' %}جاهز {% elif page.status == 'published' %}منشور {% elif page.status == 'error' %}خطأ {% else %}{{ page.status }}{% endif %}
{% if page.content_ar and page.content_ar.hero_section %}

{{ page.content_ar.hero_section.headline[:70] }}{% if page.content_ar.hero_section.headline|length > 70 %}...{% endif %}

{{ page.content_ar.hero_section.subheadline[:100] }}{% if page.content_ar.hero_section.subheadline|length > 100 %}...{% endif %}

🇸🇦 AR {% if page.content_en %} 🇬🇧 EN {% endif %}
{% endif %}
{{ page.created_at.strftime('%Y-%m-%d') }} {% if page.is_public %} 🌐 منشور {% else %} مسودة {% endif %}
{% if page.status == 'ready' or page.status == 'published' %}تعديل{% else %}التفاصيل{% endif %} {% if page.status == 'ready' or page.status == 'published' %} 👁️ {% endif %} {% if page.is_public %} 🌐 {% endif %}
{% if page.hero_image_url %}
🖼️ صورة رئيسية مرفوعة
{% endif %} {% if page.additional_images and page.additional_images|length > 0 %}
🖼️ {{ page.additional_images|length }} صور إضافية
{% endif %}
{% endfor %}
{% else %}
💻

لا توجد صفحات هبوط بعد

ابدأ بإنشاء دراسة جدوى، ثم يمكنك إنشاء صفحة هبوط احترافية بالذكاء الاصطناعي

{% endif %}
{% endblock %}