{% extends "base.html" %} {% from "components/cards.html" import info_card %} {% from "components/ui.html" import page_header, breadcrumb_nav, button, filter_badge %} {% block content %} {% set breadcrumbs = [ {'text': 'Admin Dashboard'} ] %} {{ page_header( icon_class='fas fa-cog', title_text='Admin Dashboard', subtitle_text='System overview and management', breadcrumbs=breadcrumbs, actions_html=None ) }}
{{ info_card("Total Users", stats.total_users, "All time") }} {{ info_card("Active Users", stats.active_users, "Currently active") }} {{ info_card("Total Projects", stats.total_projects, "All time") }} {{ info_card("Active Projects", stats.active_projects, "Currently active") }}

{{ _('Admin Sections') }}

Manage Users
Roles & Permissions
API Tokens
REST API Access
Webhooks
Outgoing Events
Integrations
OAuth Setup
Email Configuration
Test & Configure
Email Templates
Invoice Email Templates
Settings
System Info
Custom Fields
Global Field Definitions
Link Templates
URL Templates for Fields
Salesman Email Mappings
Report Distribution

{{ _('Recent Activity') }}

{% for entry in recent_entries %} {% else %} {% endfor %}
User Project Duration Date
{{ entry.user.username }} {{ entry.project.name }} {{ entry.duration }} {{ entry.start_time|user_date('%Y-%m-%d') }}
No recent activity.
{% endblock %}