diff options
| author | Yuval Adam <yuval@segmanta.com> | 2014-03-20 17:49:16 +0200 |
|---|---|---|
| committer | Yuval Adam <yuval@segmanta.com> | 2014-03-20 17:49:16 +0200 |
| commit | 75f93a3f7854a7383febd047391e2bfd4caceee0 (patch) | |
| tree | d5e634ef292c6b84acacc3982dbcaa0d300a346e /examples/libcloud_project/urls.py | |
Diffstat (limited to 'examples/libcloud_project/urls.py')
| -rw-r--r-- | examples/libcloud_project/urls.py | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/examples/libcloud_project/urls.py b/examples/libcloud_project/urls.py new file mode 100644 index 0000000..3eaf5ab --- /dev/null +++ b/examples/libcloud_project/urls.py @@ -0,0 +1,17 @@ +from django.conf.urls.defaults 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'^$', 'libcloud_project.views.home', name='home'), + # url(r'^libcloud_project/', include('libcloud_project.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)), +) |
