Move to src dir.
[edumed.git] / catalogue / views.py
diff --git a/catalogue/views.py b/catalogue/views.py
deleted file mode 100644 (file)
index 4f9d78c..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-# -*- coding: utf-8 -*-
-from django.views.generic import DetailView, ListView
-
-from curriculum.models import Level
-from publishers.models import Publisher
-from .models import Lesson
-
-
-class LessonListView(ListView):
-    queryset = Level.objects.exclude(lesson=None)
-    template_name = "catalogue/lesson_list.html"
-
-    def get_context_data(self, **kwargs):
-        context = super(LessonListView, self).get_context_data(**kwargs)
-        context['appendix'] = Lesson.objects.filter(type='appendix')
-        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',
-        ]
-
-    def get_context_data(self, **kwargs):
-        context = super(LessonView, self).get_context_data(**kwargs)
-        try:
-            context['publisher'] = Publisher.objects.get(
-                name=context['object'].dc.get('publisher', '').strip())
-        except (Publisher.DoesNotExist, Publisher.MultipleObjectsReturned):
-            pass
-        return context