X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/460318dfedf9128350ed4246026cf50641acb3d5..refs/heads/filmowa:/catalogue/models.py diff --git a/catalogue/models.py b/catalogue/models.py index 7d782ad..c73c762 100644 --- a/catalogue/models.py +++ b/catalogue/models.py @@ -239,10 +239,13 @@ class Lesson(models.Model): pdf = PdfFormat(wldoc, teacher=True).build() self.pdf.save("%s.pdf" % self.slug, File(open(pdf.get_filename()))) - def build_weasy_pdf(self, **kwargs): - from .publish import WeasyFormat + def build_pdf_from_html(self, **kwargs): + from .publish import PdfFromHtmlFormat wldoc = self.wldocument() - pdf = WeasyFormat(wldoc, media_root=settings.MEDIA_ROOT, **kwargs).build() + pdf = PdfFromHtmlFormat( + wldoc, media_root=settings.MEDIA_ROOT, + html_to_pdf_command=settings.HTML_TO_PDF_COMMAND, + **kwargs).build() self.weasy_pdf.save("%s.pdf" % self.slug, File(open(pdf.get_filename()))) def add_to_zip(self, zipf, student=False, prefix=''):