{% extends "layout.html" %} {% block content %}
{{ total_companies }}
Total Companies
Manage
{{ total_users }}
Total Users
View all
{{ total_teams }}
Total Teams
{{ total_projects }}
Total Projects
{{ total_time_entries|default(0) }}
Time Entries
View
{% if orphaned_users > 0 or orphaned_time_entries > 0 %}

System Health Issues Detected

{% if orphaned_users > 0 %}
{{ orphaned_users }} Orphaned Users - Users without company assignment
{% endif %} {% if orphaned_time_entries > 0 %}
{{ orphaned_time_entries }} Orphaned Time Entries - Time entries without user assignment
{% endif %}
{% endif %}

Administrator Overview

{{ system_admins }}
System Administrators
{{ regular_admins }}
Company Administrators
{{ blocked_users }}
Blocked Users
{% if blocked_users > 0 %} Review {% endif %}

Recent Activity Last 7 days

{{ recent_users }}
New Users
{{ recent_companies }}
New Companies
{{ recent_time_entries }}
Time Entries

Top Companies by Users

{% if top_companies %}
{% for company in top_companies %}

{{ company.name }}

{{ company.user_count }} users
View
{% endfor %}
{% else %}

No companies found.

{% endif %}

Recent Companies

{% if recent_companies_list %}
{% for company in recent_companies_list %}

{{ company.name }}

{{ company.created_at.strftime('%Y-%m-%d') }} {% if company.is_personal %} Freelancer {% else %} Company {% endif %}
View
{% endfor %}
{% else %}

No recent companies found.

{% endif %}
{% endblock %}