{% extends "base.html" %} {% block title %}{{ campaign.name }} - حملة{% endblock %} {% block content %}
العودة للحملات

{{ campaign.name }}

{% if campaign.video_duration %}

مدة الفيديو: {{ campaign.video_duration }} ثانية

{% endif %}
{{ campaign.status }}
{% set step1_done = campaign.script %} {% set step2_done = campaign.video_url %} {% set step3_done = campaign.status == 'published' %} {% for step_label, step_done in [('السيناريو', step1_done), ('الفيديو', step2_done), ('النشر', step3_done)] %}
{% if not loop.first %}
{% endif %}
{% if step_done %}✓{% else %}{{ loop.index }}{% endif %}
{{ step_label }}
{% endfor %}

سيناريو الفيديو

الخطوة الأولى: إنشاء وتحسين سيناريو الفيديو

{% if campaign.script %} ✓ مكتمل {% endif %}
{% if campaign.script %}
{{ campaign.script[:800] }}{% if campaign.script|length > 800 %}...{% endif %}
{% if not campaign.video_url %}
{% endif %}
{% else %}

سيقوم الذكاء الاصطناعي بتوليد سيناريو احترافي بناءً على دراسة الجدوى

{% endif %}

توليد الفيديو

{{ campaign.video_provider or 'Sora' }} — الخطوة الثانية

{% if campaign.video_url %} ✓ مكتمل {% endif %}
{% if campaign.video_url %}

الفيديو جاهز

{% if campaign.video_duration %}

المدة: {{ campaign.video_duration }} ثانية

{% endif %}
مشاهدة الفيديو
{% elif campaign.status == 'video_processing' %}
جاري توليد الفيديو...
يتم فحص الحالة تلقائياً...
{% elif campaign.script %}
{% if allowed_durations %}

اختر مدة الفيديو المطلوبة:

{% for dur in allowed_durations %} {% endfor %}
{% endif %}
{% else %}

يتطلب إكمال السيناريو أولاً

{% endif %}

النشر على المنصات

الخطوة الثالثة: اختر طريقة ومنصات النشر

{% if campaign.video_url %}
{% set platform_icons = { 'youtube': {'color': 'red', 'label': 'YouTube', 'icon': 'Y'}, 'tiktok': {'color': 'fuchsia', 'label': 'TikTok', 'icon': 'T'}, 'facebook': {'color': 'blue', 'label': 'Facebook', 'icon': 'f'}, 'instagram': {'color': 'pink', 'label': 'Instagram', 'icon': 'I'}, 'twitter': {'color': 'slate', 'label': 'X / Twitter', 'icon': 'X'}, 'snapchat': {'color': 'yellow', 'label': 'Snapchat', 'icon': 'S'} } %}
{% if user_platforms %}

اختر المنصات التي تريد النشر عليها (يمكنك اختيار أكثر من منصة):

{% for platform, info in platform_icons.items() %} {% set connected = platform in user_platforms %} {% endfor %}
{% else %}

لم تقم بربط أي حساب بعد

ربط حساباتي ↗
{% endif %}
{% else %}

يتطلب توليد الفيديو أولاً

{% endif %}
{% if campaign.posts.count() > 0 %}

المنشورات

{% for post in campaign.posts %}
{% if post.platform == 'youtube' %}Y{% elif post.platform == 'tiktok' %}T{% elif post.platform == 'facebook' %}f{% elif post.platform == 'instagram' %}I{% elif post.platform == 'snapchat' %}S{% else %}X{% endif %}
{{ post.platform }}
{{ post.status }} {% if post.publish_mode == 'sponsor' %} عبر الراعي {% elif post.publish_mode == 'my_accounts' %} حسابي {% endif %}
{% if post.post_url %} عرض {% endif %}
{% endfor %}
{% endif %}
{% endblock %}