diff options
author | kinitrupti | 2016-11-04 17:52:23 +0530 |
---|---|---|
committer | kinitrupti | 2016-11-04 17:52:23 +0530 |
commit | 9b564418c062ea43e465eebc7ac5ffd865556507 (patch) | |
tree | 281a5fd16ff267961ca2430059a037d73b51501e /PythonTBC | |
parent | eb3321f80def84e84329f213e21ef5ac94d4ccd6 (diff) | |
download | Python-TBC-Interface-9b564418c062ea43e465eebc7ac5ffd865556507.tar.gz Python-TBC-Interface-9b564418c062ea43e465eebc7ac5ffd865556507.tar.bz2 Python-TBC-Interface-9b564418c062ea43e465eebc7ac5ffd865556507.zip |
Hitcount updated
Diffstat (limited to 'PythonTBC')
-rw-r--r-- | PythonTBC/settings.py | 1 | ||||
-rw-r--r-- | PythonTBC/urls.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/PythonTBC/settings.py b/PythonTBC/settings.py index 46131a9..bd0f0b8 100644 --- a/PythonTBC/settings.py +++ b/PythonTBC/settings.py @@ -136,6 +136,7 @@ INSTALLED_APPS = ( 'django.contrib.admin', # Uncomment the next line to enable admin documentation: # 'django.contrib.admindocs', + 'hitcount', 'tbc', 'comments', #'south', diff --git a/PythonTBC/urls.py b/PythonTBC/urls.py index 77d166a..9cae5d6 100644 --- a/PythonTBC/urls.py +++ b/PythonTBC/urls.py @@ -27,7 +27,7 @@ urlpatterns = [ 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'), - + url(r'hitcount/', include('hitcount.urls', namespace='hitcount')), ] |