X-Git-Url: https://git.mdrn.pl/edumed.git/blobdiff_plain/1a798a8611063ff9abc2b8cd9104e45580f7bffd..d555d988764995ea1f9f5ece46f453a66f09b334:/catalogue/views.py diff --git a/catalogue/views.py b/catalogue/views.py deleted file mode 100644 index 273bfa3..0000000 --- a/catalogue/views.py +++ /dev/null @@ -1,26 +0,0 @@ -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 - - -class LessonView(DetailView): - model = Lesson - - def get_template_names(self): - return [ - 'catalogue/lesson/%s/lesson_detail.html' % self.object.type, - 'catalogue/lesson/lesson_detail.html', - ] -