19 lines
484 B
Python
19 lines
484 B
Python
|
#!/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',
|
||
|
url(r'^config/general$', 'get_general_config', name='config_general'),
|
||
|
url(r'^config/system$', 'get_system_config', name='config_system'),
|
||
|
)
|