changeset 148:fa98c6f46c8b draft

urls: don't hardcode bts_webui
author diegoe-guest
date Wed, 12 Aug 2009 20:51:30 +0000
parents af5334fc46c1
children aa59f301d9d4
files bts_webui/urls.py
diffstat 1 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/bts_webui/urls.py
+++ b/bts_webui/urls.py
@@ -10,13 +10,13 @@
 	(r'^admin/(.*)', admin.site.root),
 
 	# The amancay app
-	(r'^amancay/', include('bts_webui.amancay.urls')),
+	(r'^amancay/', include('amancay.urls')),
 
 	# The registration app
-	(r'^accounts/profile/', include('bts_webui.amancay.urls')),
-	(r'^accounts/', include('bts_webui.registration.urls')),
+	(r'^accounts/profile/', include('amancay.urls')),
+	(r'^accounts/', include('registration.urls')),
 
 	# amancay is the main site here.
-	(r'^/?', include('bts_webui.amancay.urls')),
+	(r'^/?', include('amancay.urls')),
     
 )