15 lines
398 B
Python
15 lines
398 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'^poster/', include('oxdata.poster.urls')),
|
|
(r'^id/', include('oxdata.lookup.urls')),
|
|
|
|
# Uncomment the next line to enable the admin:
|
|
(r'^admin/(.*)', admin.site.root),
|
|
)
|
|
|