"list staffers pdf"
This commit is contained in:
parent
09a0557e4f
commit
87dda273cd
@ -1127,10 +1127,9 @@ def print_users():
|
|||||||
spaceAfter=10
|
spaceAfter=10
|
||||||
))
|
))
|
||||||
|
|
||||||
|
|
||||||
for staffer in staffers:
|
for staffer in staffers:
|
||||||
rows = []
|
rows = []
|
||||||
row = Paragraph(staffer[1], styles['row2']), staffer[2], styles['row2']), staffer[3], styles['row2']))
|
row = (Paragraph(staffer[1], styles['row2']), Paragraph(staffer[2], styles['row2']), Paragraph(staffer[3], styles['row2']))
|
||||||
table = Table(rows, colWidths=cols_width, rowHeights=23)
|
table = Table(rows, colWidths=cols_width, rowHeights=23)
|
||||||
rows.append(row)
|
rows.append(row)
|
||||||
table = Table(rows, colWidths=cols_width, rowHeights=23)
|
table = Table(rows, colWidths=cols_width, rowHeights=23)
|
||||||
|
Loading…
Reference in New Issue
Block a user