{% extends "base.html" %} {% block title %}{{ listing.title or listing.report.project_name }} — السوق{% endblock %} {% block content %}
← العودة للسوق
{{ listing.goal_label }} {% if listing.sector %} {{ listing.sector }} {% endif %} {% if listing.featured %} ⭐ مميزة {% endif %}

{{ listing.title or listing.report.project_name }}

{{ listing.description or listing.report.project_description }}

{% if listing.preview_text %}
معاينة

{{ listing.preview_text }}

{% endif %}
{% if listing.listing_goal == 'find_investor' and listing.investment_needed %}

💰 تفاصيل الاستثمار

المبلغ المطلوب
{{ listing.investment_needed }} {{ listing.currency }}
{% if listing.equity_offered %}
الحصة المعروضة
{{ listing.equity_offered }}%
{% endif %}
{% elif listing.listing_goal == 'find_partner' %}

🤝 تفاصيل الشراكة

{% if listing.partner_role %}
الدور المطلوب
{{ listing.partner_role }}
{% endif %} {% if listing.equity_offered %}
الحصة المعروضة
{{ listing.equity_offered }}%
{% endif %}
{% elif listing.listing_goal == 'license' and listing.license_terms %}

📄 شروط الترخيص

{{ listing.license_terms }}

{% endif %} {% if reviews %}

التقييمات ({{ reviews|length }})

{% for review in reviews %}
{{ review.buyer.name }} {{ review.created_at.strftime('%Y-%m-%d') }}
{{ '⭐' * review.rating }}
{% if review.comment %}

{{ review.comment }}

{% endif %}
{% endfor %}
{% endif %}
{% if listing.listing_goal in ('sell', 'license') %}
{{ "%.2f"|format(listing.price) }} {{ listing.currency }}
{% elif listing.listing_goal == 'free' %}
مجاني
{% elif listing.listing_goal == 'find_investor' %}
بحث عن مستثمر
{% elif listing.listing_goal == 'find_partner' %}
بحث عن شريك
{% endif %}
👁 {{ listing.views }} {% if listing.purchases > 0 %}🛒 {{ listing.purchases }}{% endif %} {% if listing.avg_rating > 0 %}⭐ {{ listing.avg_rating }} ({{ listing.review_count }}){% endif %}
{% if current_user.is_authenticated and listing.user_id == current_user.id %}
هذه دراستك
{% elif already_purchased %} عرض الدراسة الكاملة

لقد اشتريت هذه الدراسة

{% elif listing.listing_goal in ('sell', 'license') %} {% if current_user.is_authenticated %}
{% else %} سجّل دخولك للشراء {% endif %} {% elif listing.listing_goal == 'free' %} {% if current_user.is_authenticated %} عرض الدراسة مجاناً {% else %} سجّل دخولك للعرض {% endif %} {% elif listing.listing_goal in ('find_investor', 'find_partner') %} {% if current_user.is_authenticated %} {% if user_inquiry %}
تم إرسال طلبك
الحالة: {{ user_inquiry.status }}
{% if user_inquiry.reply_message %}
{{ user_inquiry.reply_message }}
{% endif %}
{% else %} {% endif %} {% else %} سجّل دخولك {% endif %} {% endif %}
صاحب الدراسة
{{ listing.user.name }}
{{ seller_sales }} عملية بيع
{% if listing.contact_email %}
📧 {{ listing.contact_email }}
{% endif %}
{% if current_user.is_authenticated and listing.listing_goal in ('find_investor', 'find_partner') and not user_inquiry %} {% endif %} {% endblock %}