{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}Alerts{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Gvelo Enterprise Platform

System Alerts

Unread fraud notifications: {{ unread_count }}


Fraud Detection Alerts

{% for alert in fraud_alerts %}

[{{ alert[2]|upper }}] {{ alert[1] }} - {{ alert[3] }} {% if alert[4] %}(Ref: {{ alert[4] }}){% endif %} {{ alert[6] }}

{% else %}

No fraud alerts detected.

{% endfor %}

⚠ Low Stock

{% for p in low_stock %}

{{p[1]}} - Stock: {{p[3]}}

{% endfor %}

🚨 Out of Stock

{% for p in out_of_stock %}

{{p[1]}}

{% endfor %}

🐢 Slow Moving Goods

{% for p in slow_moving %}

{{p[1]}} - Price: {{p[2]}}

{% endfor %}
Back
{% endblock %}