2011-07-31 10:46:29 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
"""
|
|
|
|
openslides.system.urls
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
URL list for the system app.
|
|
|
|
|
|
|
|
:copyright: 2011 by the OpenSlides team, see AUTHORS.
|
|
|
|
:license: GNU GPL, see LICENSE for more details.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from django.conf.urls.defaults import *
|
|
|
|
|
|
|
|
urlpatterns = patterns('system.views',
|
2012-02-15 12:04:11 +01:00
|
|
|
url(r'^config/general$', 'get_general_config',
|
|
|
|
name='config_general'),
|
|
|
|
|
|
|
|
url(r'^config/agenda$', 'get_agenda_config',
|
|
|
|
name='config_agenda'),
|
|
|
|
|
|
|
|
url(r'^config/application$', 'get_application_config',
|
|
|
|
name='config_application'),
|
|
|
|
|
|
|
|
url(r'^config/assignment$', 'get_assignment_config',
|
|
|
|
name='config_assignment'),
|
|
|
|
|
|
|
|
url(r'^config/system$', 'get_system_config',
|
|
|
|
name='config_system'),
|
2011-07-31 10:46:29 +02:00
|
|
|
)
|