This is an OpenERP/Odoo addon.
It's a prototype to show how to add the 'last-page' magic class to report elements (in QWEB reports) so that they get displayed only if on the last-page.
Place where we speak of this:
- stackoverflow question.
- Agile business Group blog post mentioning this.
Install the module, then in the QWEB ir.ui.views
used by your
report, you can then add anywhere (header, body, footer), code with:
<div class="last-page"> My content only displayed if on last page. <div>
Have fun.