1234567891011121314151617181920212223 |
- <?xml version="1.0"?>
- <!--
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- -->
- <page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" layout="1column" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
- <head>
- <title>Order results</title>
- </head>
- <body>
- <referenceBlock name="page.main.title">
- <arguments>
- <argument translate="true" name="partly_success_title" xsi:type="string">We could only complete part of your order.</argument>
- <argument translate="true" name="failed_title" xsi:type="string">We were unable to complete your order.</argument>
- </arguments>
- </referenceBlock>
- <referenceContainer name="content">
- <block class="Magento\Multishipping\Block\Checkout\Results" name="checkout_results" template="Magento_Multishipping::checkout/results.phtml" cacheable="false"/>
- </referenceContainer>
- </body>
- </page>
|