Ir al contenido
Menú
Se marcó esta pregunta
1 Responder
8909 Vistas

Hello,

I want watermark that is to be displayed on every page of Qweb report.Following is code snippet but I unable to get watermark in every report page please guide for the same.

<template id="report_sla_contract_ac">

     <t t-call="report.external_layout">

             <t t-foreach="docs" t-as="o">

                     <div class="page">

                             <div style="position:absolute;opacity:0.25;z-index:1000;transform:rotate(300deg);-webkit-transform:rotate(300deg);width:150%;">

                                    <p style="font-size:120px;color:orange;">Watermark Text To Display </p>

                            </div>

                    </div>

         </t>

     </t>

</template>

Thanks in advance

Avatar
Descartar
Mejor respuesta

Hello,


Add the code for watermark in header of external layout add div with inline css .

<div style="position:absolute;opacity:0.25;z-index:1000;transform:rotate(300deg);-webkit-transform:rotate(300deg);width:150%;">

<p>WATERMARK</p>  

</div>


I hope you find this helpful.

Avatar
Descartar

I tried it in custom layout. But it truncates the content and showing watermark in all pages. Could you help me!

Publicaciones relacionadas Respuestas Vistas Actividad
0
abr 20
2991
3
ago 18
10716
5
nov 24
47250
5
ago 20
15753
1
sept 17
4814