Reputation: 1
I want to show watermark on all pages in odoo 11. i have tried this How to add watermarks in all pages of Odoo Reports? but doesn't work with odoo 11. So how to add watermarks in all pages of Odoo 11 Reports?
Upvotes: 0
Views: 416
Reputation: 666
You can do like this example
<style>
.watermark {
position: absolute;
opacity: 0.25;
z-index: 1000;
transform: rotate(300deg);
-webkit-transform: rotate(300deg);
width: 150%;
}
<div class="watermark">
<p>WATERMARK</p>
<img t-att-. src="'/module_name/static/src/img/image_name.png'" />
</div>
Upvotes: 0
Reputation: 16733
Please check Reports with Watermark module for Odoo v11. with the configuration on the company record, you can enable the watermark on the pdf reports throughout Odoo.
hope this helps!
Upvotes: 1