X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/196e0116ea78f78b2eeab0e76b8a4d79d5ded9aa..97afd5cf48d5c5a42cecd34e4286cda7e6cdbc26:/curriculum/models.py diff --git a/curriculum/models.py b/curriculum/models.py index cfe5ffe..4153f1b 100644 --- a/curriculum/models.py +++ b/curriculum/models.py @@ -109,6 +109,7 @@ class Level(models.Model): prefix = 'Skrocony kurs/%d %s/' % (i, lesson.slug) lesson.add_to_zip(zipf, student, prefix) for c, (section, clessons) in enumerate(lessons['course'].items()): + assert section, clessons for i, lesson in enumerate(clessons): prefix = 'Pelny kurs/%d %s/%d %s/' % (c, section.slug, i, lesson.slug) lesson.add_to_zip(zipf, student, prefix) @@ -117,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()