summaryrefslogtreecommitdiff
path: root/addons/payment_stripe/static/src/xml/stripe_templates.xml
blob: 97fd4c9796c872d5a6e2fc10f1ac40bdde9cafeb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">
    <t t-name="stripe.error">
        <div role="dialog" class="modal fade">
            <div class="modal-dialog">
                <div class="modal-content">
                    <header class="modal-header">
                        <h4 class="modal-title">Error</h4>
                        <button type="button" class="close" data-dismiss="modal" aria-label="Close">×</button>
                    </header>
                    <main class="modal-body">
                        <t t-esc="msg"></t>
                    </main>
                    <footer class="modal-footer">
                        <a role="button" href="#" class="btn btn-link btn-sm" data-dismiss="modal">Close</a>
                    </footer>
                </div>
            </div>
        </div>
    </t>
</templates>