From 542a24703da602af5a0f575d8f3da01d224d3973 Mon Sep 17 00:00:00 2001 From: Sanj Date: Thu, 29 Sep 2011 00:30:34 +0530 Subject: [PATCH] ups, forgot to add urls --- urbstudio/urls.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/urbstudio/urls.py b/urbstudio/urls.py index 36fed0a..1d4a8d5 100644 --- a/urbstudio/urls.py +++ b/urbstudio/urls.py @@ -10,6 +10,12 @@ urlpatterns = patterns('', # Example: # (r'^urbstudio/', include('urbstudio.foo.urls')), (r'^home$', 'urb.views.home'), + (r'^profile$', 'urb.views.profile'), + (r'^projects$', 'urb.views.projects'), + (r'^jobs$', 'urb.views.jobs'), + (r'^contact$', 'urb.views.contact'), + (r'^links$', 'urb.views.links'), + (r'^noteworthy$', 'urb.views.noteworthy'), # Uncomment the admin/doc line below to enable admin documentation: # (r'^admin/doc/', include('django.contrib.admindocs.urls')),