{#
/**
* @file
* Default theme implementation for a list of maintenance tasks to perform.
*
* Available variables:
* - tasks: A list of maintenance tasks to perform. Each item in the list has
* the following variables:
* - item: The maintenance task.
* - attributes: HTML attributes for the maintenance task.
* - status: (optional) Text describing the status of the maintenance task,
* 'active' or 'done'.
*
* @ingroup themeable
*/
#}
{{ 'Installation tasks'|t }}
{% for task in tasks %}
-
{{ task.item }}
{% if task.status %} ({{ task.status }}){% endif %}
{% endfor %}