{% extends admin/layout.html %} {% block title %}Dashboard{% endblock %} {% block content %}
View statistics, new accounts, and more.
{{ number_format(count($summary['new_accounts'])) }}
{{ number_format($summary['total_accounts']) }}
{{ number_format($summary['active_accounts_month']) }}
{{ number_format($summary['inactive_accounts']) }}
Accounts created in the last <1 day.
# | Username | Status | Role | Last Seen | Registered Date | Actions | |||||||||||||
There are no accounts. | |||||||||||||||||||
{{ $account['id'] }} |
{{ strtoupper(substr($account['username'], 0, 1)) }}
{% if ($account['last_seen'] > date('Y-m-d H:i:s', strtotime('-15 minutes'))): %}
{% endif; %}
|
{{ htmlspecialchars($account['username'], ENT_QUOTES) }} | {{ htmlspecialchars($account['email'], ENT_QUOTES) }} | {% if (!$account['approved']): %} Pending Approval {% elseif ($account['activation_code'] == 'activated'): %} Activated {% elseif ($account['activation_code'] == 'deactivated'): %} Deactivated {% else: %} Pending Activation {% endif; %} | {{ $account['role']}} | {{ App::time_elapsed_string($account['last_seen'])}} | {{ date('Y-m-d H:ia', strtotime($account['registered']))}} |
Edit
{% if (!$account['approved']): %}
Approve
{% endif; %}
{% if ($account['activation_code'] != 'activated'): %}
Activate
{% endif; %}
{% if ($account['activation_code'] != 'deactivated'): %}
Deactivate
{% endif; %}
Delete
|
Accounts active in the last <1 day.
# | Username | Status | Role | Last Seen | Registered Date | Actions | |||||||||||||
There are no active accounts. | |||||||||||||||||||
{{ $account['id'] }} |
{{ strtoupper(substr($account['username'], 0, 1)) }}
{% if ($account['last_seen'] > date('Y-m-d H:i:s', strtotime('-15 minutes'))): %}
{% endif; %}
|
{{ htmlspecialchars($account['username'], ENT_QUOTES) }} | {{ htmlspecialchars($account['email'], ENT_QUOTES) }} | {% if (!$account['approved']): %} Pending Approval {% elseif ($account['activation_code'] == 'activated'): %} Activated {% elseif ($account['activation_code'] == 'deactivated'): %} Deactivated {% else: %} Pending Activation {% endif; %} | {{ $account['role']}} | {{ App::time_elapsed_string($account['last_seen'])}} | {{ date('Y-m-d H:ia', strtotime($account['registered']))}} |
Edit
{% if (!$account['approved']): %}
Approve
{% endif; %}
{% if ($account['activation_code'] != 'activated'): %}
Activate
{% endif; %}
{% if ($account['activation_code'] != 'deactivated'): %}
Deactivate
{% endif; %}
Delete
|