{% extends "base.html" %} {% load static %} {% load i18n %} {% block title %} Statistics Dashboard {% endblock title %} {% block head %} {% endblock head %} {% block content %} {% include "includes/sidenav.html" %}

Statistics Dashboard

Track platform metrics and growth analytics

Current period: {{ period }}

Time Period:
{% for option in period_options %} {{ option.label }} {% endfor %}

Users

{{ stats.users.active|default:0 }}
Active users
Total: {{ stats.users.total_all_time }} (Period: {{ stats.users.total }})
{{ stats.users.active_percentage }}

Issues

{{ stats.issues.open|default:0 }}
Open issues
Total: {{ stats.issues.total_all_time }} (Period: {{ stats.issues.total }})
{{ stats.issues.open_percentage }}

Organizations

{{ stats.organizations.active|default:0 }}
Active orgs
Total: {{ stats.organizations.total_all_time }} (Period: {{ stats.organizations.total }})
{{ stats.organizations.active_percentage }}

Points

{{ stats.points.total|default:0 }}
Recent points
Total: {{ stats.points.total_all_time }} (Period: {{ stats.points.total }})
{{ stats.points.percentage }}

Activity Over Time

Issues
Users

Issue Status Breakdown

Domains
{{ stats.domains.total|default:0 }}
Active: {{ stats.domains.active }} / Total: {{ stats.domains.total_all_time }}
Bug Hunts
{{ stats.hunts.total|default:0 }}
Active: {{ stats.hunts.active }} / Total: {{ stats.hunts.total_all_time }}
Projects
{{ stats.projects.total|default:0 }}
Total: {{ stats.projects.total_all_time }}
Activities
{{ stats.activities.total|default:0 }}
Total: {{ stats.activities.total_all_time }}
{% endblock content %} {% block scripts %} {% endblock scripts %}