X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/348b50646c474a1541769a949001b7d48f14e446..c487acef42baa6abcda4506c0a14a246d20e9533:/catalogue/models.py diff --git a/catalogue/models.py b/catalogue/models.py index 8ecf7ac..4a21790 100644 --- a/catalogue/models.py +++ b/catalogue/models.py @@ -1,4 +1,5 @@ # -*- coding: utf-8 +from django.conf import settings from django.core.files import File from django.core.urlresolvers import reverse from django.db import models @@ -109,6 +110,9 @@ class Lesson(models.Model): student_pdf = models.FileField( upload_to="catalogue/lesson/student_pdf", null=True, blank=True, max_length=255, storage=bofh_storage) + weasy_pdf = models.FileField( + upload_to="catalogue/lesson/weasy", + null=True, blank=True, max_length=255, storage=bofh_storage) class Meta: ordering = ['section', 'level', 'order'] @@ -235,6 +239,12 @@ 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): + from .publish import WeasyFormat + wldoc = self.wldocument() + pdf = WeasyFormat(wldoc, media_root=settings.MEDIA_ROOT).build() + self.weasy_pdf.save("%s.pdf" % self.slug, File(open(pdf.get_filename()))) + def add_to_zip(self, zipf, student=False, prefix=''): pdf = self.student_pdf if student else self.pdf if pdf: @@ -292,11 +302,15 @@ class Lesson(models.Model): return any(requirement in self.dc.get('requires', []) for requirement in ('internet', 'Internet')) +def attachment_path(instance, filename): + return 'catalogue/attachment/%s/%s' % (instance.lesson.slug, filename) + + class Attachment(models.Model): slug = models.CharField(max_length=255) ext = models.CharField(max_length=15) lesson = models.ForeignKey(Lesson) - file = models.FileField(upload_to="catalogue/attachment", storage=bofh_storage, max_length=255) + file = models.FileField(upload_to=attachment_path, storage=bofh_storage, max_length=255) class Meta: ordering = ['slug', 'ext']