Workflow Status
{{ this.statusMessage }}
{# Progress bar with Stimulus controller #}
{# Current state info #}

Current State: {{ this.currentState|replace({'_': ' '})|title }}

{% if this.nextSteps is not empty %}

Next Steps:

    {% for step in this.nextSteps %}
  • {{ step }}
  • {% endfor %}
{% endif %}
{# Publish button state #} {% if this.readyToPublish %}
✓ Your reading list is ready to publish!
{% elseif this.currentState == 'published' %}
✓ Published successfully!
{% endif %}