Print format page row number

Hello everyone,

How can I get print format page row number in one variable using jinja2.

Thanks,
Anand Huded

Possible clues here Anand thanks to kolate_sambhaji

@clarkej,

I dont want page numbers in all the pages.

I want page row count, for example If I generate one page I want to store total number of rows in one page and store it in one variable.

Tell me is it possible?

Well, declare a List variable say my_totalnumberofrowsineachpage = [].

You imply that the pages list a table, yes?

In that case iterate over each page, and store the row count for that page listed in the table in my_totalnumberofrowsineachpage - how that would work is my question!

Maybe someone can point us to example codeā€¦