{% extends "layouts/base.html" %} {% load i18n %} {% block sidebar %}{% endblock %} {% block title %}{% trans "Onboarding Content" %}{% endblock %} {% block content %}
{% if current_content.icon %} {% else %} {% endif %}

{{ current_content.get_localized_title }}

{% if current_content.get_localized_description %}

{{ current_content.get_localized_description }}

{% endif %}
{% trans "Step" %} {{ step }} {% trans "of" %} {{ content|length }} {{ progress_percentage }}%
{% for item in content %}
{% if item.id == current_content.id %}
{{ forloop.counter }}
{% elif forloop.counter0 < step|add:"-1" %}
{% else %}
{{ forloop.counter }}
{% endif %} {% if not forloop.last %}
{% endif %}
{% endfor %}
{{ current_content.get_localized_content|safe }}
{% csrf_token %}
{% if previous_step %} {% trans "Previous" %} {% endif %} {% if next_step %} {% else %} {% trans "Continue to Checklist" %} {% endif %}
{% endblock %}