Beispiel #1
0
 def __init__(self,
              *,
              registration,
              filename: str,
              as_attachment: bool = False):
     self._response = PdfResponse(filename=filename,
                                  as_attachment=as_attachment)
     self.registration = registration
     self.make_pdf()
Beispiel #2
0
 def __init__(self, *, jobs, filename: str, as_attachment: bool = False):
     self._response = PdfResponse(filename=filename, as_attachment=as_attachment)
     self.jobs = jobs
     self.make_pdf()