4f04223e08
Used customized AppConfig classes in openslides.core, openslides.account, openslides.projector, openslides.agenda, openslides.motion, openslides.assignment, openslides.users, openslides.mediafile, openslides.config. Refactored loading of signals, template signals and slides.
30 lines
893 B
Python
30 lines
893 B
Python
from django.template.loader import render_to_string
|
|
|
|
from openslides.config.api import config
|
|
from openslides.projector.api import SlideError
|
|
|
|
from .models import Mediafile
|
|
|
|
|
|
def mediafile_presentation_as_slide(**kwargs):
|
|
"""
|
|
Return the html code for a presentation of a Mediafile.
|
|
|
|
At the moment, only the presentation of pdfs is supported.
|
|
|
|
The function is registered during app loading.
|
|
"""
|
|
file_pk = kwargs.get('pk', None)
|
|
page_num = kwargs.get('page_num', 1)
|
|
|
|
try:
|
|
pdf = Mediafile.objects.get(
|
|
pk=file_pk,
|
|
filetype__in=Mediafile.PRESENTABLE_FILE_TYPES,
|
|
is_presentable=True)
|
|
except Mediafile.DoesNotExist:
|
|
raise SlideError
|
|
context = {'pdf': pdf, 'page_num': page_num,
|
|
'fullscreen': config['pdf_fullscreen']}
|
|
return render_to_string('mediafile/presentation_slide.html', context)
|