{% extends "layout.html" %} {% block content %}

🔧 System Administrator Dashboard

Global system overview and management tools

📊 System Overview

{{ total_companies }}

Total Companies

Manage →

{{ total_users }}

Total Users

Manage →

{{ total_teams }}

Total Teams

{{ total_projects }}

Total Projects

{{ total_time_entries }}

Time Entries

View →

👤 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

{% if orphaned_users > 0 or orphaned_time_entries > 0 %}

⚠️ System Health Issues

{% 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 %}

🏢 Top Companies by Users

{% if top_companies %} {% for company in top_companies %} {% endfor %}
Company Users Actions
{{ company.name }} {{ company.user_count }} View
{% else %}

No companies found.

{% endif %}

🆕 Recent Companies

{% if recent_companies_list %} {% for company in recent_companies_list %} {% endfor %}
Company Created Type Actions
{{ company.name }} {{ company.created_at.strftime('%Y-%m-%d') }} {% if company.is_personal %} Freelancer {% else %} Company {% endif %} View
{% else %}

No recent companies found.

{% endif %}

🛠️ System Management

{% endblock %}