diff options
Diffstat (limited to 'coip/urls.py')
-rw-r--r-- | coip/urls.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/coip/urls.py b/coip/urls.py new file mode 100644 index 0000000..d24cc15 --- /dev/null +++ b/coip/urls.py @@ -0,0 +1,17 @@ +from django.conf.urls.defaults import * + +# Uncomment the next two lines to enable the admin: +from django.contrib import admin +admin.autodiscover() + +urlpatterns = patterns('', + # Example: + # (r'^coip/', include('coip.foo.urls')), + + # 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: + (r'^admin/', include(admin.site.urls)), +) |