{{ report.project_name }} — إنشاء محتوى متعدد من دراسة الجدوى عبر NotebookLM
{% if notebook %}
{% endif %}
{% if nlm_mode == 'per_user' and not google_connected %}
ربط حساب Google
لاستخدام دفتر المعرفة، تحتاج ربط حسابك في Google مع NotebookLM.
سيتم فتح نافذة تسجيل دخول Google — سجّل بحسابك الشخصي.
ستفتح نافذة متصفح لتسجيل الدخول — أكمل التسجيل ثم ستُغلق تلقائياً
{% elif nlm_mode == 'admin_shared' and not google_connected %}
⚠️
الخدمة غير متاحة حالياً
مدير النظام لم يقم بربط حساب Google بعد. يرجى التواصل مع الإدارة لتفعيل الخدمة.
الوضع الحالي: حساب مشترك (الأدمن)
{% elif not notebook %}
حساب Google متصل ✓
📓
إنشاء دفتر المعرفة
سيتم إنشاء دفتر في Google NotebookLM وإضافة بيانات دراسة الجدوى كمصدر.
بعدها يمكنك إنشاء أنواع محتوى مختلفة (صوت، فيديو، خريطة ذهنية، اختبارات، وأكثر).
{% else %}
✓
الدفتر متصل
Notebook ID: {{ notebook.notebook_id[:16] }}...
{% set asset_types = ["audio", "video", "mind_map", "report", "flashcards", "quiz", "infographic", "slide_deck"] %}
{% set color_map = {
"audio": "emerald", "video": "blue", "mind_map": "purple", "report": "slate",
"flashcards": "amber", "quiz": "rose", "infographic": "cyan", "slide_deck": "orange"
} %}
{% for atype in asset_types %}
{% set info = asset_display[atype] %}
{% set asset = assets_map.get(atype) %}
{% set color = color_map[atype] %}
{% set status = asset.status if asset else "none" %}
{{ info.icon }}
{% if status == "ready" %}
جاهز ✓
{% elif status == "generating" %}
جاري...
{% elif status == "failed" %}
فشل
{% endif %}
{{ info.label_ar }}
{{ info.label_en }}
{% if status == "ready" %}
{% if atype == "mind_map" %}
👁 عرض
{% elif atype == "quiz" %}
👁 عرض
{% elif atype == "flashcards" %}
👁 عرض
{% elif atype in ("audio", "video", "report", "infographic", "slide_deck") %}
👁 عرض
{% endif %}
⬇ تحميل
{% elif status == "generating" %}
جاري الإنشاء...
{% else %}
{% endif %}
{% if asset and asset.error_message %}
{{ asset.error_message[:60] }}...
{% endif %}
{% endfor %}
سيتم إنشاء جميع أنواع المحتوى بالتتابع (قد يستغرق عدة دقائق)