{% extends 'layouts/base.html' %} {% load i18n %} {% block title %}{{ page_title }} - PX360{% endblock %} {% block content %}

{% trans "Wizard Preview" %}

{% trans "Preview the onboarding experience for different user roles" %}

{% trans "Back to Content" %}
{% trans "Select Role to Preview" %}
{% for role in available_roles %} {% endfor %}
{% if selected_role %}
{% trans "Content Sections" %}

{{ content_count }}

{% trans "Checklist Items" %}

{{ checklist_count }}

{% trans "Content Sections" %}
{{ content_count }}
{% for content in preview_content %}

{{ content.title_en }}

{{ content.description_en }}


{{ content.content_en|safe|truncatewords:50 }}
{% if content.content_ar %}
{% trans "Arabic:" %} {{ content.content_ar|safe|truncatewords:30 }}
{% endif %}
{% empty %}

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

{% endfor %}
{% trans "Checklist Items" %}
{{ checklist_count }}
{% for item in preview_checklist %}
{% if item.description_en %}

{{ item.description_en }}

{% endif %} {% if item.content %}

{{ item.content.title_en }}

{% endif %}
{% empty %}

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

{% endfor %}
{% trans "User Experience Summary" %}
{% trans "Step 1: Learn" %}

{% blocktrans %}Users will see {{ content_count }} content sections to learn about PX360.{% endblocktrans %}

{% trans "Step 2: Acknowledge" %}

{% blocktrans %}Users must acknowledge {{ checklist_count }} checklist items.{% endblocktrans %}

{% trans "Step 3: Sign & Activate" %}

{% trans "Users provide digital signature and create their account." %}

{% else %}
{% trans "Select a role above to preview the onboarding experience" %}

{% trans "You can see exactly what users with different roles will experience during onboarding." %}

{% endif %}
{% endblock %}