ctools-wizard-trail.html.twig 350 B

1234567891011121314
  1. {% if trail %}
  2. <div class="wizard-trail">
  3. {% for key, value in trail %}
  4. {% if key is same as(step) %}
  5. <strong>{{ value }}</strong>
  6. {% else %}
  7. {{ value }}
  8. {% endif %}
  9. {% if value is not same as(trail|last) %}
  10. {{ divider }}
  11. {% endif %}
  12. {% endfor %}
  13. </div>
  14. {% endif %}