diff options
| author | Maksim A. Boyko <maksim.a.boyko@gmail.com> | 2012-05-30 11:22:05 -0400 |
|---|---|---|
| committer | Maksim A. Boyko <maksim.a.boyko@gmail.com> | 2012-05-30 11:22:05 -0400 |
| commit | 155719d70191af3bf203d2591a3b96b74da1e4ef (patch) | |
| tree | 54bb3739a0cee690f93e126d76ffb2dcf07def67 /scanneerjammer/urls.py | |
Initial commit
Diffstat (limited to 'scanneerjammer/urls.py')
| -rw-r--r-- | scanneerjammer/urls.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/scanneerjammer/urls.py b/scanneerjammer/urls.py new file mode 100644 index 0000000..9735f0c --- /dev/null +++ b/scanneerjammer/urls.py @@ -0,0 +1,17 @@ +from django.conf.urls import patterns, include, url + +# Uncomment the next two lines to enable the admin: +# from django.contrib import admin +# admin.autodiscover() + +urlpatterns = patterns('', + # Examples: + # url(r'^$', 'scanneerjammer.views.home', name='home'), + # url(r'^scanneerjammer/', include('scanneerjammer.foo.urls')), + + # Uncomment the admin/doc line below to enable admin documentation: + # url(r'^admin/doc/', include('django.contrib.admindocs.urls')), + + # Uncomment the next line to enable the admin: + # url(r'^admin/', include(admin.site.urls)), +) |
