6aae8bff15
* Update projector when polls are updated. * Update projector when assignment candidates are updated * Update projector when motion submitter are updated * Fixed the assignment publish poll view * Added projector.api.register_slide_model
18 lines
487 B
Python
18 lines
487 B
Python
#!/usr/bin/env python
|
||
# -*- coding: utf-8 -*-
|
||
"""
|
||
openslides.motion.slides
|
||
~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
||
Defines the slides for the User app.
|
||
|
||
:copyright: (c) 2011–2013 by the OpenSlides team, see AUTHORS.
|
||
:license: GNU GPL, see LICENSE for more details.
|
||
"""
|
||
|
||
from openslides.projector.api import register_slide_model
|
||
from .models import User, Group
|
||
|
||
register_slide_model(User, 'participant/user_slide.html')
|
||
register_slide_model(Group, 'participant/group_slide.html')
|