christopher-ramirez / secretary

Take the power of Jinja2 templates to OpenOffice and LibreOffice.
Other
190 stars 48 forks source link

Explain how add page #58

Closed fturiot closed 6 years ago

fturiot commented 6 years ago

Hello, Is it possible to add page (with one page template ) example Page one cover page two general information

page 3 to n detail information page n+1 end page thanks for all

christopher-ramirez commented 6 years ago

Hello! N pages can be added immediately after a loop tag. eg:

{% for profile in profiles %}[insert a page break here with CTRL+Enter]

[ detail page ]

{% endfor %}[insert a page break here]

[ end page ]

Hope this helps

fturiot commented 6 years ago

thanks for all