summaryrefslogtreecommitdiff
path: root/tbc/urls.py
diff options
context:
space:
mode:
authorhardythe12014-06-17 12:33:40 +0530
committerhardythe12014-06-17 12:33:40 +0530
commit7294076a0b0b47a29d5148b56e0be02c6f17e986 (patch)
tree3fbb3f100998342548d7ad3b197024f16615a183 /tbc/urls.py
parent5d9783ad90d0bc3dd3c09b1931fc6cc630573ce4 (diff)
downloadPython-TBC-Interface-7294076a0b0b47a29d5148b56e0be02c6f17e986.tar.gz
Python-TBC-Interface-7294076a0b0b47a29d5148b56e0be02c6f17e986.tar.bz2
Python-TBC-Interface-7294076a0b0b47a29d5148b56e0be02c6f17e986.zip
fixing a minor issue in book approval view & in uploading the content page
Diffstat (limited to 'tbc/urls.py')
-rw-r--r--tbc/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbc/urls.py b/tbc/urls.py
index 7ee91aa..0aa0b3c 100644
--- a/tbc/urls.py
+++ b/tbc/urls.py
@@ -2,7 +2,7 @@ from django.conf.urls import patterns, include, url
urlpatterns = patterns('',
- url(r'^$', 'tbc.views.TemporarilyUnavailable', name='TemporarilyUnavailable'),
+ url(r'^$', 'tbc.views.Home', name='Home'),
url(r'^internship-forms/$', 'tbc.views.InternshipForms', name='InternshipForms'),
url(r'^about-pythontbc/$', 'tbc.views.AboutPytbc', name='AboutPytbc'),
url(r'^register/$', 'tbc.views.UserRegister', name='UserRegister'),