{% extends "base.html" %} {% from "components/ui.html" import page_header, breadcrumb_nav, button, filter_badge, empty_state %} {% 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 ) }}
{{ _('Total Users') }}
{{ _('All time') }}
{{ _('Active Users') }}
{{ _('Currently active') }}
{{ _('Total Projects') }}
{{ _('All time') }}
{{ _('Active Projects') }}
{{ _('Currently active') }}
{{ _('Total Entries') }}
{{ _('Time entries logged') }}
{{ _('Active Timers') }}
{{ _('Currently running') }}
{{ _('Total Hours') }}
{{ _('All time tracked') }}
{{ _('Billable Hours') }}
{{ _('Billable time') }}
| {{ _('User') }} | {{ _('Project') }} | {{ _('Duration') }} | {{ _('Date') }} |
|---|---|---|---|
|
{{ entry.user.username }}
|
{{ entry.project.name if entry.project else _('N/A') }}
|
{{ entry.duration }}
|
{{ entry.start_time|user_datetime }}
|