diff options
author | ankitjavalkar | 2015-10-26 11:48:24 +0530 |
---|---|---|
committer | ankitjavalkar | 2015-10-26 11:48:24 +0530 |
commit | e1fda4bf471841b805828fd26692dd3f09ee600d (patch) | |
tree | ecd898de068b63504d834bfbbe92be37728e33ea /PythonTBC/urls.py | |
parent | 2c58497010b8a2d505cb4ff976ad742a7773abf9 (diff) | |
parent | 5b77fdb95f6c3d71dfa1dd5d7ff06cd8bf519c98 (diff) | |
download | Python-TBC-Interface-e1fda4bf471841b805828fd26692dd3f09ee600d.tar.gz Python-TBC-Interface-e1fda4bf471841b805828fd26692dd3f09ee600d.tar.bz2 Python-TBC-Interface-e1fda4bf471841b805828fd26692dd3f09ee600d.zip |
Merge pull request #21 from kinitrupti/hitcount
Hit-Count
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 c5d3753..698452a 100644 --- a/PythonTBC/urls.py +++ b/PythonTBC/urls.py @@ -22,6 +22,7 @@ urlpatterns = patterns('', 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'hitcount/', include('hitcount.urls', namespace='hitcount')), ) |