{# /** * @file * Template for the post update email notification. * * Available variables: * - success: The update success status * - metadata: The update metadata * * @ingroup themeable */ #}

{% if success %} {{ 'The project "@project" was updated from "@from_version" to "@to_version" with success.'|t({ '@project': metadata.getProjectName, '@from_version': metadata.getFromVersion, '@to_version': metadata.getToVersion, }) }} {% else %} {{ 'The project "@project" was updated from "@from_version" to "@to_version" with failures.'|t({ '@project': metadata.getProjectName, '@from_version': metadata.getFromVersion, '@to_version': metadata.getToVersion, }) }} {% endif %}

{% set status_report = path('system.status') %} {% trans %} See the site status report page and any logs for more information. {% endtrans %}