diff options
Diffstat (limited to 'urls.py')
-rw-r--r-- | urls.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -8,8 +8,10 @@ from settings import URL_ROOT if URL_ROOT.startswith('/'): URL_BASE = r'^%s/exam/'%URL_ROOT[1:] + ADMIN_BASE = r'^%s/admin/'%URL_ROOT[1:] else: - URL_BASE = r'^exam/' + URL_BASE = r'^exam/' + ADMIN_BASE = r'^admin/' urlpatterns = patterns('', url(URL_BASE, include('exam.urls')), @@ -17,5 +19,5 @@ urlpatterns = patterns('', # 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)), + url(ADMIN_BASE, include(admin.site.urls)), ) |