diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2010-12-26 19:04:28 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2010-12-26 19:04:28 +0100 |
commit | 84f5d4f5210ee75cb2eef8e7d21fbb13690f9f50 (patch) | |
tree | 185b4a646f488661bb30e77ea96d1c5f21ea33dd /ishtar/urls.py | |
parent | 622d1627ae53596e471fa8e0bad784b0a55ad2cb (diff) | |
download | Ishtar-84f5d4f5210ee75cb2eef8e7d21fbb13690f9f50.tar.bz2 Ishtar-84f5d4f5210ee75cb2eef8e7d21fbb13690f9f50.zip |
Integration of registration module
Diffstat (limited to 'ishtar/urls.py')
-rw-r--r-- | ishtar/urls.py | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/ishtar/urls.py b/ishtar/urls.py index 4d921b598..9f58a3e56 100644 --- a/ishtar/urls.py +++ b/ishtar/urls.py @@ -8,11 +8,8 @@ from settings import URL_PATH BASE_URL = r'^' + URL_PATH urlpatterns = patterns('', - # Example: - # (r'^ishtar/', include('ishtar.foo.urls')), - - # Uncomment the admin/doc line below to enable admin documentation: - # (r'^admin/doc/', include('django.contrib.admindocs.urls')), - + (BASE_URL + 'accounts/', include('registration.urls')), (BASE_URL + r'admin/', include(admin.site.urls)), ) +urlpatterns += patterns('ishtar.furnitures.views', + url(BASE_URL + '$', 'index', name='start'),) |