{% extends "base.html" %} {% block title %}مراجعة السوق — لوحة الإدارة{% endblock %} {% block content %}
ADMIN

مراجعة سوق الدراسات

← لوحة الإدارة
{{ pending_count }}
بانتظار المراجعة
{{ total_sales }}
عملية بيع
{{ "%.2f"|format(total_revenue) }}
إجمالي الإيرادات
{% for s, label in [('pending', 'بانتظار المراجعة'), ('approved', 'معتمدة'), ('rejected', 'مرفوضة'), ('', 'الكل')] %} {{ label }} {% endfor %}
{% if listings %}
{% for listing in listings %}
{{ listing.goal_label }} {% if listing.approval_status == 'pending' %} قيد المراجعة {% elif listing.approval_status == 'approved' %} معتمدة {% elif listing.approval_status == 'rejected' %} مرفوضة {% endif %} {% if listing.featured %} ⭐ مميزة {% endif %} {% if listing.sector %} {{ listing.sector }} {% endif %}

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

{{ listing.description }}

بواسطة: {{ listing.user.name }} ({{ listing.user.email }}) {{ listing.created_at.strftime('%Y-%m-%d') }} {% if listing.listing_goal in ('sell', 'license') %} {{ listing.price }} {{ listing.currency }} {% elif listing.listing_goal == 'find_investor' %} استثمار: {{ listing.investment_needed }} {{ listing.currency }} {% endif %} 👁 {{ listing.views }} | 🛒 {{ listing.purchases }}
{% if listing.approval_status == 'pending' %}
{% endif %} {% if listing.approval_status == 'approved' %}
{% endif %}
{% endfor %}
{% else %}
لا توجد دراسات في هذا التصنيف.
{% endif %}
{% endblock %}