{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Onboarding Dashboard" %}{% endblock %} {% block content %}

{% trans "Onboarding Dashboard" %}

{% trans "Manage staff onboarding progress and settings" %}

{% trans "Total Invited" %}
{{ stats.total_invited }}
{% trans "Completed" %}
{{ stats.completed }}
{% trans "In Progress" %}
{{ stats.in_progress }}
{% trans "Not Started" %}
{{ stats.not_started }}

{% trans "Send Bulk Invitations" %}

{% trans "Invite multiple staff members to onboarding" %}

{% trans "Manage Checklists" %}

{% trans "View and edit onboarding checklist items" %}

{% trans "Manage Content" %}

{% trans "View and edit onboarding content" %}

{% trans "Provisional Accounts" %}

{% trans "View accounts pending activation" %}

{% trans "Recent Onboarding Activity" %}

{% for activity in recent_activity %}
{% if activity.status == 'completed' %} {% elif activity.status == 'in_progress' %} {% else %} {% endif %}

{{ activity.user }}

{{ activity.action }}

{{ activity.timestamp|timesince }}
{% empty %}

{% trans "No recent activity" %}

{% endfor %}
{% endblock %}