X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/045df7c750b525bc5efab353bee21bbe9eac9b4e..3c1674d821a479e38d70d61dd6feeb709bf18702:/catalogue/models.py diff --git a/catalogue/models.py b/catalogue/models.py index 6a3bbb7..75feba1 100644 --- a/catalogue/models.py +++ b/catalogue/models.py @@ -161,7 +161,7 @@ class Lesson(models.Model): for attachment in self.attachment_set.all(): full_name = os.path.join(settings.MEDIA_ROOT, attachment.file.name) f = IOFile.from_filename(full_name) - attachments[attachment.slug] = f + attachments['%s.%s' % (attachment.slug, attachment.ext)] = f infile = IOFile.from_filename(self.xml_file.path, attachments=attachments) Lesson.publish(infile) if repackage_level: @@ -289,7 +289,7 @@ class Lesson(models.Model): return None def requires_internet(self): - return 'internet' in self.dc.get('requires', []) + return any(requirement in self.dc.get('requires', []) for requirement in ('internet', 'Internet')) class Attachment(models.Model):