X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/e76fdcf2a2488b1787c74fe8dccfa38d7ac04c84..c1f370d46a0e1d1c8d99e5d67fd9553e10c10158:/catalogue/views.py diff --git a/catalogue/views.py b/catalogue/views.py index 60f00ef..7108b2b 100644 --- a/catalogue/views.py +++ b/catalogue/views.py @@ -1 +1,14 @@ -# Create your views here. +import os.path +from django.conf import settings +from django.views.generic import DetailView, ListView +from .models import Lesson, Section + +class SectionView(ListView): + model = Section + + def get_context_data(self, **kwargs): + context = super(SectionView, self).get_context_data(**kwargs) + context['appendix'] = Lesson.objects.filter(type='appendix') + context['package_url'] = os.path.join(settings.MEDIA_URL, settings.CATALOGUE_PACKAGE) + context['package_student_url'] = os.path.join(settings.MEDIA_URL, settings.CATALOGUE_PACKAGE_STUDENT) + return context