X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/f99a4867131b8e139ec6fb5a0b063f00219102f4..68859fcc7e562dd9caa01ca1896bee8c76359e13:/curriculum/models.py diff --git a/curriculum/models.py b/curriculum/models.py index 1d77d4f..4153f1b 100644 --- a/curriculum/models.py +++ b/curriculum/models.py @@ -118,6 +118,13 @@ class Level(models.Model): lesson.add_to_zip(zipf, student, prefix) # Add all appendix lessons, from all levels. for lesson in Lesson.objects.filter(type='appendix'): + # ugly fix + if self.slug in ('przedszkole', 'sp1-3', 'sp4-6'): + if lesson.slug == 'slowniczek': + continue + else: + if lesson.slug == 'slowniczek-sp': + continue prefix = '%s/' % lesson.slug lesson.add_to_zip(zipf, student, prefix) zipf.close()