{% extends "core/base.html" %} {% load static %} {% block title %}Feature Usage Analytics - SwiftPOS{% endblock %} {% block topbar_title %}Feature Usage Analytics{% endblock %} {% block content %}
📊 Feature Usage Analytics

Superadmin view: per-company usage and activity stats.

11
{% for row in data %} {% empty %} {% endfor %}
Company Plan Orders (30d) Products Active Users Last Activity Status
{{ row.company.name }}
{{ row.company.slug }}
{{ row.company.plan.name|default:"No Plan" }} {{ row.orders_30 }} {{ row.products }} {{ row.active_users }} {% if row.last_activity %} {{ row.last_activity|timesince }} ago {% else %} No orders {% endif %} {% if row.company.is_active %} Active {% else %} Suspended {% endif %} {% if row.orders_30 == 0 %} Inactive {% endif %}
No companies found.
{% endblock %}