maintenance-task-list.html.twig 737 B

12345678910111213141516171819202122232425
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation 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. * @ingroup themeable
  15. */
  16. #}
  17. <h2 class="visually-hidden">{{ 'Installation tasks'|t }}</h2>
  18. <ol class="task-list">
  19. {% for task in tasks %}
  20. <li{{ task.attributes }}>
  21. {{ task.item }}
  22. {% if task.status %}<span class="visually-hidden"> ({{ task.status }})</span>{% endif %}
  23. </li>
  24. {% endfor %}
  25. </ol>