{% comment %} The stepper component visually represents a multi-step process, indicating the current step and progress through the steps. Parameters: - class (str): Additional CSS classes for the container. - current_step (int): The current active step in the process (1-indexed). - steps (list): A list of step titles. {% endcomment %}
{% for step_title in steps %}
{% if forloop.counter < current_step %} {% else %} {{ forloop.counter }} {% endif %}

{{ step_title }}

{% endfor %}