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

{% trans "Preview Onboarding Flow" %}

{% trans "Preview the staff onboarding experience by role" %}

{% trans "Select Role to Preview" %}

{% for role in available_roles %}

{{ role.name }}

{{ role.description|truncatechars:80|default:"Preview the onboarding flow for this role" }}

{% empty %}

{% trans "No roles available" %}

{% endfor %}
{% if selected_role %}

{% trans "Content Sections" %}

{% if preview_content %}
{% for content in preview_content %}

{{ content.title_en }}

{{ content.description_en|truncatewords:15 }}

{% endfor %}
{% else %}

{% trans "No content sections for this role" %}

{% endif %}

{% trans "Checklist Items" %}

{% if preview_checklist %}
{% for item in preview_checklist %}
{% if item.is_required %} {% endif %}

{{ item.text_en }}

{% if item.is_required %} {% trans "Required" %} {% endif %}
{% endfor %}
{% else %}

{% trans "No checklist items for this role" %}

{% endif %}

{% trans "Start Full Preview" %}

{% trans "Experience the complete onboarding flow from start to finish as a" %} {{ selected_role.name }} {% trans "user" %}

{% else %}

{% trans "Select a Role" %}

{% trans "Choose a role from the options above to preview the onboarding experience for that specific role" %}

{% endif %}
{% endblock %}