diff options
author | Jayaram R Pai | 2014-07-06 23:10:02 +0530 |
---|---|---|
committer | Jayaram R Pai | 2014-07-06 23:10:02 +0530 |
commit | 4c535a956e8a6d5bb9c0b124f4180fcf9d0275e9 (patch) | |
tree | 297c4033affb5f52cb8ff2009dfcc2edc7aef45e /PythonTBC/urls.py | |
parent | 36e7f06608eb339082c2e905133bd7d83d9b36f0 (diff) | |
download | Python-TBC-Interface-4c535a956e8a6d5bb9c0b124f4180fcf9d0275e9.tar.gz Python-TBC-Interface-4c535a956e8a6d5bb9c0b124f4180fcf9d0275e9.tar.bz2 Python-TBC-Interface-4c535a956e8a6d5bb9c0b124f4180fcf9d0275e9.zip |
added comments app
Diffstat (limited to 'PythonTBC/urls.py')
-rw-r--r-- | PythonTBC/urls.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/PythonTBC/urls.py b/PythonTBC/urls.py index 7664952..d75e545 100644 --- a/PythonTBC/urls.py +++ b/PythonTBC/urls.py @@ -14,5 +14,6 @@ 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')), ) |