{% extends "core/base.html" %} {% load static %} {% block title %}Business Insights - SwiftPOS{% endblock %} {% block topbar_title %}Business Insights{% endblock %} {% block content %}
💡 Business Insights

Auto-generated insights based on your company data.

{% if unread_count > 0 %} {{ unread_count }} unread {% endif %} {% if high_priority > 0 %} {{ high_priority }} urgent {% endif %} {% if user_role in 'admin manager' %}
{% csrf_token %}
{% endif %}
{% if category_filter or priority_filter %} Clear {% endif %}
{% if page_obj %}
{% for insight in page_obj %}
{{ insight.get_priority_display }}
{{ insight.get_category_display }} {% if not insight.is_read %} {% endif %}
{{ insight.title }}

{{ insight.description }}

{{ insight.created_at|timesince }} ago
{% endfor %}
{% if page_obj.has_other_pages %} {% endif %} {% else %}
No insights yet

Insights are generated automatically every day. Run python manage.py generate_insights to generate them now.

{% endif %}
{% endblock %}