{% for num, label, url in [(1,'Upload','/upload'),(2,'Configure','/configure'),(3,'Run','/'),(4,'Results','/results'),(5,'Deploy','/deploy'),(6,'Query','/query')] %}
{% if not loop.first %}
{% endif %}
{% if num == current_step %}
{{ num }}
{{ label }}
{% elif num <= max_step %}
✓
{{ label }}
{% else %}
{{ num }}
{{ label }}
{% endif %}
{% endfor %}