pandora/oxdb/urls.py

35 lines
1 KiB
Python
Raw Normal View History

2009-06-08 16:08:59 +00:00
from django.conf.urls.defaults import *
2009-08-16 12:23:29 +00:00
from django.conf import settings
2009-06-08 16:08:59 +00:00
# Uncomment the next two lines to enable the admin:
2009-08-16 12:23:29 +00:00
from django.contrib import admin
admin.autodiscover()
2009-06-08 16:08:59 +00:00
urlpatterns = patterns('',
# Example:
2009-12-31 15:04:32 +00:00
(r'^ajax_filtered_fields/', include('ajax_filtered_fields.urls')),
2009-08-01 14:14:54 +00:00
(r'^json/', include('backend.urls')),
(r'^$', 'app.views.index'),
2009-06-08 16:08:59 +00:00
# Uncomment the admin/doc line below and add 'django.contrib.admindocs'
# to INSTALLED_APPS to enable admin documentation:
# (r'^admin/doc/', include('django.contrib.admindocs.urls')),
# Uncomment the next line to enable the admin:
2009-08-16 12:23:29 +00:00
(r'^admin/(.*)', admin.site.root),
2009-06-08 16:08:59 +00:00
)
2009-08-16 12:23:29 +00:00
if settings.DEBUG:
urlpatterns += patterns('',
(r'^media/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': settings.MEDIA_ROOT}),
(r'^static/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': settings.STATIC_ROOT}),
(r'^tests/(?P<path>.*)$', 'django.views.static.serve',
{'document_root': settings.TESTS_ROOT}),
2009-08-16 12:23:29 +00:00
)