cab53f0434
Renamed model to Topic. Added migrations file. Fixed #2402.
25 lines
712 B
Python
25 lines
712 B
Python
from ..core.exceptions import ProjectorException
|
|
from ..utils.projector import ProjectorElement
|
|
from .models import Topic
|
|
|
|
|
|
class TopicSlide(ProjectorElement):
|
|
"""
|
|
Slide definitions for topic model.
|
|
"""
|
|
name = 'topics/topic'
|
|
|
|
def check_data(self):
|
|
if not Topic.objects.filter(pk=self.config_entry.get('id')).exists():
|
|
raise ProjectorException('Topic does not exist.')
|
|
|
|
def get_requirements(self, config_entry):
|
|
try:
|
|
topic = Topic.objects.get(pk=config_entry.get('id'))
|
|
except Topic.DoesNotExist:
|
|
# Topic does not exist. Just do nothing.
|
|
pass
|
|
else:
|
|
yield topic
|
|
yield topic.agenda_item
|