Uday Sankar
Uday Sankar

Reputation: 1

In odoo v17 how can I make a <div> appear only at the bottom of the last page of the QWEB pdf print or appear inside footer at the last page only?

<!-- Report Template -->
<template id="report_delivery_form">
    <t t-call="web.html_container">
        <t t-call="web.basic_layout">
            <t t-foreach="docs" t-as="doc">
                

                <!-- Header -->
               
            



                      <div>
                         <p>content to be shown at the last page only</p>

                       </div>
                    
                   
                    

                    <!-- Footer -> 
            </t>
        </t>
    </t>
</template>

In ODOO V17 I wanted the div to appear only at the bottom of the last page of pdf print or inside footer only at the last page but I couldn't find the solution.

Upvotes: 0

Views: 104

Answers (0)

Related Questions