diff options
| author | Yuval Adam <yuv.adm@gmail.com> | 2011-03-19 20:35:43 +0200 |
|---|---|---|
| committer | Yuval Adam <yuv.adm@gmail.com> | 2011-03-19 20:35:43 +0200 |
| commit | 9d5631031eeada149a923cd93b8eb8d2149c9c55 (patch) | |
| tree | d55a72f564eb99f8265dc607ef25d3f2eefbe730 /demo/urls.py | |
| parent | 8b112c71e15e6de0739e19ba6e11da43d751c5f8 (diff) | |
added demo app
Diffstat (limited to 'demo/urls.py')
| -rw-r--r-- | demo/urls.py | 16 |
1 files changed, 16 insertions, 0 deletions
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)), +) |
