X-Git-Url: https://git.stderr.nl/gitweb?a=blobdiff_plain;f=urls.py;fp=urls.py;h=3eb5e8e3fa7ab0ee677bde6c7156a65f5c4d920b;hb=fc78a05df13a64c7bcc7a72c54a89ec1920f0308;hp=0000000000000000000000000000000000000000;hpb=efeeade067d90daa41d0f4a67cf7a9157dfc5df4;p=matthijs%2Fprojects%2Fdorestad-bookings.git diff --git a/urls.py b/urls.py new file mode 100644 index 0000000..3eb5e8e --- /dev/null +++ b/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'^dorestad1493/', include('dorestad1493.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/(.*)', admin.site.root), +)