maintenance-task-list.html.twig 698 B

1234567891011121314151617181920212223
  1. {#
  2. /**
  3. * @file
  4. * Theme override for a list of maintenance tasks to perform.
  5. *
  6. * Available variables:
  7. * - tasks: A list of maintenance tasks to perform. Each item in the list has
  8. * the following variables:
  9. * - item: The maintenance task.
  10. * - attributes: HTML attributes for the maintenance task.
  11. * - status: (optional) Text describing the status of the maintenance task,
  12. * 'active' or 'done'.
  13. */
  14. #}
  15. <h2 class="visually-hidden">{{ 'Installation tasks'|t }}</h2>
  16. <ol class="task-list">
  17. {% for task in tasks %}
  18. <li{{ task.attributes }}>
  19. {{ task.item }}
  20. {% if task.status %}<span class="visually-hidden"> ({{ task.status }})</span>{% endif %}
  21. </li>
  22. {% endfor %}
  23. </ol>