{% extends "base.html" %} {% block title %}مراقبة السوق - {{ report.project_name }}{% endblock %} {% block content %}

مراقبة السوق والمنافسين

{{ report.project_name }}

{% if unread_count > 0 %} {% endif %} ← العودة للتقرير

المنافسون المراقبون

{% if monitors %}
{% for m in monitors %}
{{ m.competitor_url }}
{% if m.last_checked %}
آخر فحص: {{ m.last_checked.strftime('%m/%d %H:%M') }}
{% endif %}
{% endfor %}
{% else %}

أضف روابط المنافسين لبدء المراقبة

{% endif %}

التنبيهات {% if unread_count > 0 %} {{ unread_count }} جديد {% endif %}

{% if alerts %}
{% for alert in alerts %}
{% if alert.alert_type == 'competitor_change' %}تغيير منافس {% elif alert.alert_type == 'market_trend' %}اتجاه سوقي {% elif alert.alert_type == 'price_change' %}تغيير أسعار {% elif alert.alert_type == 'new_competitor' %}منافس جديد {% elif alert.alert_type == 'opportunity' %}فرصة {% else %}{{ alert.alert_type }}{% endif %} {% if alert.severity == 'critical' %} ⚠ حرج {% elif alert.severity == 'warning' %} ⚠ تحذير {% endif %}
{{ alert.created_at.strftime('%m/%d') }}

{{ alert.title }}

{% if alert.description %}

{{ alert.description }}

{% endif %}
{% endfor %}
{% else %}
📢

لا توجد تنبيهات بعد. اضغط "فحص السوق" لتوليد تحليل.

{% endif %}
{% endblock %}