25 lines
726 B
Python
25 lines
726 B
Python
from django.conf.urls.defaults import *
|
|
from django.conf import settings
|
|
|
|
# Uncomment the next two lines to enable the admin:
|
|
from django.contrib import admin
|
|
admin.autodiscover()
|
|
|
|
urlpatterns = patterns('',
|
|
(r'^$', 'oxdata.views.index'),
|
|
(r'^poster/', include('oxdata.poster.urls')),
|
|
(r'^id/', include('oxdata.lookup.urls')),
|
|
|
|
# Uncomment the next line to enable the admin:
|
|
(r'^admin/(.*)', admin.site.root),
|
|
)
|
|
|
|
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}),
|
|
)
|
|
|
|
|