summaryrefslogtreecommitdiff
path: root/PythonTBC/urls.py
diff options
context:
space:
mode:
Diffstat (limited to 'PythonTBC/urls.py')
-rw-r--r--PythonTBC/urls.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/PythonTBC/urls.py b/PythonTBC/urls.py
index 78a7215..34bc0f6 100644
--- a/PythonTBC/urls.py
+++ b/PythonTBC/urls.py
@@ -18,10 +18,13 @@ urlpatterns = patterns('',
# 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(r'^comments/', include('comments.urls')),
+ url(r'^admin', include(admin.site.urls)),
url(r'^', include('tbc.urls', namespace='tbc')),
url(r'^sitemap\.xml$', 'django.contrib.sitemaps.views.sitemap', {'sitemaps': sitemaps}),
+
+ url(r'^admin-tools/commenting', 'commentingapp.views.commenting', name = 'commenting'),
+ url(r'^admin-tools/error_page', 'tbc_error_page.views.error', name = 'error_page'),
+ url(r'^admin-tools/broken_page', 'tbc_error_page.views.broken', name = 'broken_page'),
)