Send also motion.state.workflow to motion block slide.

to show recommendation names in slide template
This commit is contained in:
Emanuel Schütze 2017-02-17 15:32:44 +01:00
parent 0319799aff
commit 06e9ffc819

View File

@ -1,7 +1,7 @@
from ..core.exceptions import ProjectorException from ..core.exceptions import ProjectorException
from ..utils.collection import CollectionElement from ..utils.collection import CollectionElement
from ..utils.projector import ProjectorElement from ..utils.projector import ProjectorElement
from .models import Motion, MotionBlock, MotionChangeRecommendation from .models import Motion, MotionBlock, MotionChangeRecommendation, Workflow
class MotionSlide(ProjectorElement): class MotionSlide(ProjectorElement):
@ -71,6 +71,7 @@ class MotionBlockSlide(ProjectorElement):
yield motion_block yield motion_block
yield motion_block.agenda_item yield motion_block.agenda_item
yield from motion_block.motion_set.all() yield from motion_block.motion_set.all()
yield from Workflow.objects.all()
def get_collection_elements_required_for_this(self, collection_element, config_entry): def get_collection_elements_required_for_this(self, collection_element, config_entry):
output = super().get_collection_elements_required_for_this(collection_element, config_entry) output = super().get_collection_elements_required_for_this(collection_element, config_entry)