frontend/templates/frontend/steps.html

Summary

Maintainability
Test Coverage
<div class="step-bar">
  <label>
    <span class="usa-sr-only">
      Step {{ current_step.number }} of {{ steps|length }}:
    </span>
    {{ current_step.label }}
  </label>
  <ol class="steps" aria-hidden="true">
    {% for step in steps %}
      <li title="{{ step.label }}"
      {% if step.current %} class="current"{% endif %}></li>
    {% endfor %}
  </ol>
</div>