{% extends "base.html" %} {% block title %}التقرير - {{ record.file_name }}{% endblock %} {% block content %}

التقرير النهائي

تحميل Word {% if report.report_pdf %} تحميل PDF {% endif %}
{% if record.client.creator.logo_path %}
شعار
{% endif %} {% if record.client.creator.company_name %}

{{ record.client.creator.company_name }}

{% endif %}

تقرير تحليل التسجيل الصوتي

{{ report.created_at.strftime('%Y-%m-%d %H:%M') }}


١. معلومات عامة

اسم الشخص {{ record.client.name }}
المحقق {{ record.client.creator.name }}
تاريخ التحليل {{ report.created_at.strftime('%Y-%m-%d %H:%M') }}
نوع التحليل {% if report.report_type == 'ai' %} تحليل ذكي (AI) {% else %} تحليل محلي {% endif %}

٢. ملخص التسجيل

{{ record.analysis.summary }}

{% if record.analysis.people %}

٣. الأشخاص المذكورون

    {% for person in record.analysis.people %}
  • {{ person }}
  • {% endfor %}
{% endif %} {% if record.analysis.places %}

٤. الأماكن المذكورة

    {% for place in record.analysis.places %}
  • {{ place }}
  • {% endfor %}
{% endif %} {% if record.analysis.events %}

٥. الأحداث والتفاصيل

    {% for event in record.analysis.events %}
  • {{ event }}
  • {% endfor %}
{% endif %} {% if record.analysis.keywords %}

٦. الكلمات المفتاحية

{{ record.analysis.keywords|join(', ') }}

{% endif %} {% if record.analysis.assessment %}

٧. التقييم العام

{{ record.analysis.assessment }}

{% endif %} {% if record.analysis.recommendations %}

٨. التوصيات

    {% for rec in record.analysis.recommendations %}
  • {{ rec }}
  • {% endfor %}
{% endif %}

٩. النص الكامل للتسجيل

{{ record.text }}

١٠. ملاحظات إضافية

{% if report.notes %} {% endif %}
{% if record.analysis.note %}
{{ record.analysis.note }}
{% endif %}
العودة للتسجيل
{% endblock %}