wldoc = WLDocument.from_file(self.xml_file.path, provider=OrmDocProvider)
else:
wldoc = WLDocument(infile, provider=OrmDocProvider())
- pdf = PdfFormat(wldoc).build()
if student:
+ pdf = PdfFormat(wldoc).build()
self.student_pdf.save("%s.pdf" % self.slug,
File(open(pdf.get_filename())))
else:
+ pdf = PdfFormat(wldoc, teacher=True).build()
self.pdf.save("%s.pdf" % self.slug,
File(open(pdf.get_filename())))
"%spliki-zrodlowe/%s.xml" % (prefix, self.slug))
pdf = self.student_pdf if student else self.pdf
if pdf:
- zipf.write(self.xml_file.path,
+ zipf.write(pdf.path,
"%s%s%s.pdf" % (prefix, self.slug, "_student" if student else ""))
+ for attachment in self.attachment_set.all():
+ zipf.write(attachment.file.path,
+ u"%smaterialy/%s.%s" % (prefix, attachment.slug, attachment.ext))
+
def build_package(self, student=False):