From fdc8ebcaa702f2b894a4cf6519b05ba9e25a7b72 Mon Sep 17 00:00:00 2001 From: sanj Date: Thu, 21 Oct 2010 18:57:21 +0200 Subject: [PATCH] ups, forgot to add urls.py --- itf/itfcore/urls.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 itf/itfcore/urls.py diff --git a/itf/itfcore/urls.py b/itf/itfcore/urls.py new file mode 100644 index 0000000..d248c8d --- /dev/null +++ b/itf/itfcore/urls.py @@ -0,0 +1,6 @@ +from django.conf.urls.defaults import * + +urlpatterns = patterns('', + (r'^profile/(?P.*)/', 'itfcore.views.profile'), +) +