2013-08-04 12:59:11 +02:00
|
|
|
|
#!/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.
|
|
|
|
|
"""
|
|
|
|
|
|
2013-10-03 21:49:51 +02:00
|
|
|
|
from openslides.projector.api import register_slide_model
|
2013-09-25 10:01:01 +02:00
|
|
|
|
|
|
|
|
|
from .models import Group, User
|
2013-08-04 12:59:11 +02:00
|
|
|
|
|
2013-10-03 21:49:51 +02:00
|
|
|
|
register_slide_model(User, 'participant/user_slide.html')
|
|
|
|
|
register_slide_model(Group, 'participant/group_slide.html')
|