{% extends 'base.html' %} {% block title %}Statistics - Bizness Navigator{% endblock %} {% block content %}

Location Check Statistics

Analytics and trends of your location checks

{{ stats.total }}
Total Checks
{{ stats.by_status.approved }}
Approved
{{ stats.by_status.conditional }}
Conditional
{{ stats.by_status.rejected }}
Rejected

Average Metrics

{{ stats.avg_score|floatformat:1 }}
out of 100
Average Score
{{ stats.avg_cost|floatformat:0 }}
UZS
Average Cost
{{ stats.avg_time|floatformat:0 }}
days
Average Time

Status Distribution

Status Breakdown

Approved {{ stats.by_status.approved|default:0 }} {% if stats.total > 0 %} ({{ stats.by_status.approved|default:0|mul:100|div:stats.total|floatformat:1 }}%) {% endif %}
Conditional {{ stats.by_status.conditional|default:0 }} {% if stats.total > 0 %} ({{ stats.by_status.conditional|default:0|mul:100|div:stats.total|floatformat:1 }}%) {% endif %}
Rejected {{ stats.by_status.rejected|default:0 }} {% if stats.total > 0 %} ({{ stats.by_status.rejected|default:0|mul:100|div:stats.total|floatformat:1 }}%) {% endif %}

Top 5 Business Types

{% if stats.by_business_type %}
{% for item in stats.by_business_type %}
{{ forloop.counter }}

{{ item.business_type }}

Business Type

{{ item.count }}
{% if stats.total > 0 %} {{ item.count|mul:100|div:stats.total|floatformat:0 }}% {% endif %}
{% endfor %}
{% else %}

Insufficient data to display

{% endif %}
{% if stats.by_business_type %}

Checks by Business Type

{% endif %}
View History
See all location checks
New Check
Check location now
{% load mathfilters %} {% endblock %}