Clean : receiver sample conf.
[shinken.git] / skonf / urls.py
blob079c153badb95a5c7df2fdd92d0b055076ade6b6
1 from django.conf.urls.defaults import *
2 from django.conf import settings
3 # Uncomment the next two lines to enable the admin:
4 # from django.contrib import admin
5 # admin.autodiscover()
7 urlpatterns = patterns('',
8 # Example:
9 # (r'^sconf/', include('sconf.foo.urls')),
11 # Uncomment the admin/doc line below to enable admin documentation:
12 # (r'^admin/doc/', include('django.contrib.admindocs.urls')),
14 # Uncomment the next line to enable the admin:
15 # (r'^admin/', include(admin.site.urls)),
16 (r'^$','reactionners.views.index'),
17 (r'^arbiters','arbiters.views.index'),
18 (r'^realms','realms.views.index'),
19 (r'^schedulers','schedulers.views.index'),
20 (r'^pollers','pollers.views.index'),
21 (r'^reactionners','reactionners.views.index'),
22 (r'^brokers','brokers.views.index'),
23 (r'^modules','modules.views.index'),
24 (r'^tpl','tpl.views.index'),
27 if settings.DEBUG:
28 urlpatterns += patterns('',
29 (r'^static/(?P<path>.*)$', 'django.views.static.serve', {'document_root': settings.STATICFILES_ROOT}),