From 9d5631031eeada149a923cd93b8eb8d2149c9c55 Mon Sep 17 00:00:00 2001 From: Yuval Adam Date: Sat, 19 Mar 2011 20:35:43 +0200 Subject: added demo app --- demo/urls.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 demo/urls.py (limited to 'demo/urls.py') diff --git a/demo/urls.py b/demo/urls.py new file mode 100644 index 0000000..c732221 --- /dev/null +++ b/demo/urls.py @@ -0,0 +1,16 @@ +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'^demo/', include('demo.foo.urls')), + + # Uncomment the admin/doc line below 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)), +) -- cgit v1.3.1