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.
17 lines
792 B
17 lines
792 B
<odoo>
|
|
<data>
|
|
<template id="assets_frontend" inherit_id="website.assets_frontend" name="Assets For NewsLetter">
|
|
<xpath expr="." position="inside">
|
|
<script type="text/javascript" src="/news_letter_name/static/src/js/news_letter_name.js"/>
|
|
</xpath>
|
|
</template>
|
|
<!--Mass mailing, Adding a new field before the email field-->
|
|
<template id="s_newsletter_subscribe_form_extend" inherit_id="website_mass_mailing.s_newsletter_subscribe_form">
|
|
<xpath expr="//input[@name='email']" position="before">
|
|
<input type="text" name="name"
|
|
class="js_subscribe_name form-control"
|
|
placeholder="your name..."/>
|
|
</xpath>
|
|
</template>
|
|
</data>
|
|
</odoo>
|