ai_upgrade_assistant-0.2.0-alpha2/templates/ai-upgrade-status.html.twig
templates/ai-upgrade-status.html.twig
{#
/**
* @file
* Default theme implementation for displaying upgrade status.
*
* Available variables:
* - wrapper_attributes: Attributes for the outer wrapper element.
* - header_attributes: Attributes for the header element.
* - content_attributes: Attributes for the content element.
* - status: The current status (success, warning, error, info).
* - icon: The icon to display.
* - status_class: The status-specific class.
* - title: The status title.
* - message: The status message.
*
* @ingroup themeable
*/
#}
<div{{ wrapper_attributes }}>
<div{{ header_attributes }}>
{% if icon %}
<span class="ai-upgrade-status__icon ai-upgrade-status__icon--{{ icon }}"></span>
{% endif %}
<h3 class="ai-upgrade-status__title {{ status_class }}">{{ title }}</h3>
</div>
<div{{ content_attributes }}>
{{ message }}
</div>
</div>
