[Django]-InAttributeError: module 'reportlab.pdfgen.canvas' has no attribute 'acroform'

2👍

Use

p.acroForm.checkbox(..)

instead of

canvas.acroform.checkbox(..)

Pay attention to the lowerCamelCase in “acroForm”.

Leave a comment