Я создаю документ PDF с reportlab, используя класс Paragraph:
doc = SimpleDocTemplate(response, leftMargin=lateral_margin, rightMargin=lateral_margin,
topMargin=top_bottom_margin, bottomMargin=top_bottom_margin)
Document = []
Document.append(Paragraph("bla bla bla bla", my_style))
doc.build(Document)
Теперь я хочу добавить в конце каждой страницы строку, как я могу это сделать ??