1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/sale_amazon/views/amazon_templates.xml
2024-12-10 09:04:09 +07:00

22 lines
761 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="authorization_error" name="Authorization Error">
<!-- Variables description:
- 'error_message' - The reason of the error.
- 'account_url' - The URL to the Amazon account.
-->
<t t-call="portal.frontend_layout">
<div class="wrap">
<div class="container">
<h1>An error occurred</h1>
<p>An error occurred while linking your account with Amazon.</p>
<p><t t-esc="error_message"/></p>
<a t-att-href="account_url" class="btn btn-primary mt-2">Back to my account</a>
</div>
</div>
</t>
</template>
</odoo>