def get_context_data(self, **kwargs):
        context = super(LessonsView, self).get_context_data(**kwargs)
        context['categories'] = LessonCategory.objects.all()
        return context