{% extends "base.html" %} {% block title %}دفتر المعرفة — {{ report.project_name }}{% endblock %} {% block content %}
Knowledge Notebook

دفتر المعرفة

{{ 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' or nlm_mode == 'admin_pool') and not google_connected %}
⚠️

الخدمة غير متاحة حالياً

مدير النظام لم يقم بإعداد حسابات Google بعد. يرجى التواصل مع الإدارة لتفعيل الخدمة.

الوضع الحالي: {% if nlm_mode == 'admin_shared' %}حساب مشترك (الأدمن){% else %}مجموعة حسابات (Admin Pool){% endif %}
{% if current_user.is_admin %} {% endif %}
{% elif not notebook %}
{% if nlm_mode == 'per_user' %}
حساب Google متصل ✓
{% else %}
{% if nlm_mode == 'admin_shared' %}حساب الأدمن متصل ✓{% else %}حسابات الأدمن متاحة ✓{% endif %}
{% endif %}
📓

إنشاء دفتر المعرفة

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

{% else %} {% if nlm_mode == 'per_user' and not google_connected %}

ربط حساب Google لاستخدام NotebookLM

لإنشاء محتوى جديد، تحتاج لربط حساب Google الخاص بك

{% endif %}

الدفتر متصل

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 assets_list = assets_grouped.get(atype, []) %} {% set color = color_map[atype] %} {% set status = asset.status if asset else "none" %} {% set has_multiple = assets_list|length > 1 %}
{{ info.icon }}
{% if has_multiple %} {% set ready_with_files = assets_list|selectattr('status', 'equalto', 'ready')|selectattr('file_path')|list %} {% if ready_with_files|length > 0 %} {{ ready_with_files|length }} نسخ {% endif %} {% endif %}
{% if status == "ready" %} جاهز ✓ {% elif status == "generating" %} جاري... {% elif status == "failed" %} فشل {% endif %}

{{ info.label_ar }}

{{ info.label_en }}

{% if status == "ready" %} {% if has_multiple %}
{% for asset_item in assets_list if asset_item.status == "ready" %} {% if asset_item.file_path %}
نسخة {{ asset_item.asset_index }}
{% if atype == "mind_map" %} 👁 {% elif atype == "quiz" %} 👁 {% elif atype == "flashcards" %} 👁 {% elif atype in ("audio", "video", "report", "infographic", "slide_deck") %} 👁 {% endif %}
{% endif %} {% endfor %}
{% else %} {% if atype == "mind_map" %} 👁 عرض {% elif atype == "quiz" %} 👁 عرض {% elif atype == "flashcards" %} 👁 عرض {% elif atype in ("audio", "video", "report", "infographic", "slide_deck") %} 👁 عرض {% endif %} ⬇ تحميل {% endif %} {% elif status == "generating" %}
جاري الإنشاء...
{% else %} {% endif %}
{% if asset and asset.error_message and not has_multiple %}

{{ asset.error_message[:60] }}...

{% elif has_multiple %} {% set ready_with_files = assets_list|selectattr('status', 'equalto', 'ready')|selectattr('file_path')|list %} {% set failed_assets = assets_list|selectattr('status', 'equalto', 'failed')|list %} {% set pending_assets = assets_list|rejectattr('status', 'in', ['ready', 'failed'])|list %} {% if failed_assets and failed_assets|length == assets_list|length %}

جميع النسخ فشلت. اضغط إعادة المحاولة.

{% elif ready_with_files|length == 0 and pending_assets|length > 0 %}

{{ assets_list|length }} نسخ قيد الإنشاء. جاري التحضير...

{% elif failed_assets|length > 0 and ready_with_files|length > 0 %}

{{ failed_assets|length }} نسخ فشلت. {{ ready_with_files|length }} نسخ جاهزة.

{% elif pending_assets|length > 0 and ready_with_files|length > 0 %}

{{ ready_with_files|length }} نسخ جاهزة. {{ pending_assets|length }} نسخ قيد الإنشاء.

{% endif %} {% endif %}
{% endfor %}

سيتم إنشاء جميع أنواع المحتوى بالتتابع (قد يستغرق عدة دقائق)

{% endif %}
{% endblock %}