Exemplo n.º 1
0
 def is_with_published_event(self):
     return LectureConditions.is_with_published_event(model_instance=self)
Exemplo n.º 2
0
 def is_published(self):
     return LectureConditions.is_published(model_instance=self)
Exemplo n.º 3
0
 def is_published(self):
     return LectureConditions.is_published(model_instance=self)
Exemplo n.º 4
0
 def is_with_video(self):
     return LectureConditions.is_with_video(model_instance=self)
Exemplo n.º 5
0
 def is_with_published_event(self):
     return LectureConditions.is_with_published_event(model_instance=self)
Exemplo n.º 6
0
 def is_with_video(self):
     return LectureConditions.is_with_video(model_instance=self)
Exemplo n.º 7
0
 def filter_by_published(self):
     return self.filter(LectureConditions.is_published())
Exemplo n.º 8
0
 def filter_by_with_published_event(self):
     return self.filter(LectureConditions.is_with_published_event())
Exemplo n.º 9
0
 def filter_by_with_video(self):
     return self.filter(LectureConditions.is_with_video())