ecf5248962
* Set a static projector title * absolute_urls for the activate links * update the projector when a slide changes (in save()) * insert the absolute_url template filter * Preview to slides * renamed is_active to is_active_slide * The SlideMixin has to come before the PersonMixin * Update list of speakers * Render Countdown via JS * Reconnect projector after connection lost * Overlays can allways be active and do not appear in the widget * Rewrote the clock as overlay
39 lines
1.0 KiB
Python
39 lines
1.0 KiB
Python
#!/usr/bin/env python
|
||
# -*- coding: utf-8 -*-
|
||
"""
|
||
openslides.assignment.slides
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
||
Slides for the assignment app.
|
||
|
||
:copyright: 2011–2013 by OpenSlides team, see AUTHORS.
|
||
:license: GNU GPL, see LICENSE for more details.
|
||
"""
|
||
|
||
from django.template.loader import render_to_string
|
||
|
||
from openslides.config.api import config
|
||
from openslides.projector.api import register_slide
|
||
from .models import Assignment
|
||
|
||
|
||
def assignment_slide(**kwargs):
|
||
"""
|
||
Slide for an Assignment
|
||
"""
|
||
assignment_pk = kwargs.get('pk', None)
|
||
try:
|
||
assignment = Assignment.objects.get(pk=assignment_pk)
|
||
except Assignment.DoesNotExist:
|
||
return ''
|
||
|
||
polls = assignment.poll_set
|
||
context = {
|
||
'polls': polls.filter(published=True),
|
||
'vote_results': assignment.vote_results(only_published=True),
|
||
'assignment': assignment}
|
||
|
||
return render_to_string('assignment/slide.html', context)
|
||
|
||
register_slide(Assignment.slide_callback_name, assignment_slide)
|