{% extends "base.html" %} {% block title %}مجتمع المشاريع{% endblock %} {% block content %}

🔬 مجتمع المشاريع

اكتشف المشاريع المبتكرة من رواد الأعمال

{% if current_user.is_authenticated %} + إضافة مشروع {% endif %}
{{ total_projects }}
مشروع منشور
{{ total_sponsors }}
راعي
{{ total_views }}
مشاهدة
{{ total_likes }}
إعجاب
{% if featured_projects %}

مشاريع مميزة

{% endif %}
{% for project in pagination.items %}
{% if project.cover_image %}
{{ project.title_ar or project.title }} {% if project.is_featured %} ⭐ مميز {% endif %}
{% else %}
🔬
{% endif %}

{{ project.title_ar or project.title }}

{{ project.description_ar or project.description }}

{{ project.user.name }}
👁 {{ project.view_count }} ❤ {{ project.like_count }}
{% if project.approved_sponsors %}
{% for sponsor in project.approved_sponsors[:4] %} {% if sponsor.logo_url %} {{ sponsor.tier }} {% else %} {{ sponsor.tier[0]|upper }} {% endif %} {% endfor %} {% if project.approved_sponsors|length > 4 %} +{{ project.approved_sponsors|length - 4 }} {% endif %}
{% endif %}
{% else %}

لا توجد مشاريع منشورة

{% endfor %}
{% if pagination.pages > 1 %}
{% if pagination.has_prev %} {% endif %} {% for p in pagination.iter_pages() %} {% if p %} {% if p == pagination.page %} {{ p }} {% else %} {{ p }} {% endif %} {% else %} ... {% endif %} {% endfor %} {% if pagination.has_next %} {% endif %}
{% endif %}
{% endblock %}