{% extends "layouts/base.html" %} {% load i18n %} {% block title %}{% trans "Onboarding" %} - Step {{ step }}{% endblock %} {% block content %}
{% trans "Progress" %}
{{ progress_percentage }}%
{% for content_item in content %}
{% if request.user.language == 'ar' %}{{ content_item.title_ar }}{% else %}{{ content_item.title_en }}{% endif %} {% if content_item.id in completed_steps %} {% endif %}
{% endfor %}
{% if current_content.icon %} {% endif %}

{% if request.user.language == 'ar' %}{{ current_content.title_ar }}{% else %}{{ current_content.title_en }}{% endif %}

{% if request.user.language == 'ar' %}{{ current_content.description_ar }}{% else %}{{ current_content.description_en }}{% endif %}


{% if request.user.language == 'ar' %}
{{ current_content.content_ar|safe }}
{% else %} {{ current_content.content_en|safe }} {% endif %}
{% if previous_step %} {% else %}
{% endif %} {% if next_step %} {% else %} {% endif %}
{% endblock %}