{% extends "base.html" %} {% block title %}Investor CRM — Jadwa AI{% endblock %} {% block content %}
INVESTOR CRM

إدارة المستثمرين

+ إضافة مستثمر
{% for stage in ['identified','contacted','meeting','negotiating','committed'] %} {% set stage_contacts = contacts|selectattr('stage', 'equalto', stage)|list %} {% if stage_contacts %}

{{ stage }}

{% for c in stage_contacts %}
{{ c.investor_name }}
{{ c.firm or '' }} — {{ c.email or '' }}
{% endfor %}
{% endif %} {% endfor %} {% if not contacts %}
لا يوجد مستثمرين بعد. أضف أول مستثمر!
{% endif %}
{% endblock %}