{% extends "base.html" %} {% import 'components/macros.html' as ui %} {% block title %}AI Recommendations{% endblock %} {% block body_class %}recommendations-page{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

AI Recommendations

Operational recommendations generated from current sales, stock, profit, staff, and customer data.

Admin
{% for item in recommendations %}
{{ item.priority }} | {{ item.category }} | {{ item.created_at }}

{{ item.title }}

{{ item.message }}

{% if item.action %}
Recommended action: {{ item.action }}
{% endif %}
{% else %}

No recommendations yet

Refresh to queue the recommendation engine.

{% endfor %}
{% endblock %}