You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

22 lines
1.0 KiB

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- If no payment provider is configured we can configure it from website -->
<template id="appointment_payment" name="Appointment Payment Providers">
<t t-set="no_breadcrumbs" t-value="True"/>
<t t-call="portal.portal_layout">
<div id="wrap"
class="bg-o-color-4 h-100 mt-4 pb-4 px-4 rounded-3 border">
<div t-if="not providers" class="mt-2">
<a role="button" class="btn-link"
groups="base.group_system"
t-attf-href="/web#action=#{payment_action_id}">
<i class="fa fa-arrow-right"></i> Add payment providers
</a>
</div>
<div t-else="" class="oe_structure container o_appointment o_appointment_payment">
<div t-call="payment.checkout"/>
</div>
</div>
</t>
</template>
</odoo>