diff options
Diffstat (limited to 'PythonTBC/urls.py')
-rw-r--r-- | PythonTBC/urls.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/PythonTBC/urls.py b/PythonTBC/urls.py index 78a7215..5cd6ff1 100644 --- a/PythonTBC/urls.py +++ b/PythonTBC/urls.py @@ -19,9 +19,16 @@ urlpatterns = patterns('', # Uncomment the next line to enable the admin: url(r'^admin/', include(admin.site.urls)), - url(r'^comments/', include('comments.urls')), url(r'^', include('tbc.urls', namespace='tbc')), url(r'^sitemap\.xml$', 'django.contrib.sitemaps.views.sitemap', {'sitemaps': sitemaps}), + + url(r'^admin-tools/$', 'tbc.views.admin_tools'), + 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'), + + + ) |