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.
26 lines
1.0 KiB
26 lines
1.0 KiB
<?xml version="1.0" encoding="utf-8" ?>
|
|
<!-- Copyright 2016 Jairo Llopis <jairo.llopis@tecnativa.com>
|
|
License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). -->
|
|
|
|
<odoo>
|
|
|
|
<template id="unsubscribe"
|
|
inherit_id="website_mass_mailing.unsubscribe"
|
|
name="Add Reasons to Mailing List Management Form">
|
|
<!-- Disable core AJAX submission of form, because it is impossible to
|
|
extend it as it is designed right now. It is refactored in this addon.
|
|
TODO Remove when merged https://github.com/odoo/odoo/pull/14386. -->
|
|
<xpath expr="//div[hasclass('container', 'o_unsubscribe_form')]"
|
|
position="attributes">
|
|
<attribute name="class" value="container o_unsubscribe_form_custom"/>
|
|
</xpath>
|
|
|
|
<!-- Add reasons to mass mailing list manager -->
|
|
<xpath expr="//t[@t-as='contact']/.." position="after">
|
|
<t t-call="mass_mailing_custom_unsubscribe.reason">
|
|
<t t-set="extra_class" t-value="'hidden'"/>
|
|
</t>
|
|
</xpath>
|
|
</template>
|
|
|
|
</odoo>
|