2013-03-12 20:58:22 +01:00
|
|
|
|
#!/usr/bin/env python
|
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
"""
|
|
|
|
|
openslides.participant
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
|
|
The OpenSlides participant app.
|
|
|
|
|
|
2013-03-01 17:13:12 +01:00
|
|
|
|
:copyright: (c) 2011–2013 by the OpenSlides team, see AUTHORS.
|
2013-03-12 20:58:22 +01:00
|
|
|
|
:license: GNU GPL, see LICENSE for more details.
|
|
|
|
|
"""
|
|
|
|
|
|
2012-07-19 11:11:07 +02:00
|
|
|
|
from django.utils.translation import ugettext_noop
|
|
|
|
|
|
2013-03-01 17:13:12 +01:00
|
|
|
|
from . import signals
|
2013-03-12 20:58:22 +01:00
|
|
|
|
|
|
|
|
|
|
2012-07-19 11:11:07 +02:00
|
|
|
|
NAME = ugettext_noop('Participant')
|