ups, forgot to add urls.py

This commit is contained in:
sanj 2010-10-21 18:57:21 +02:00
parent 98d270017c
commit fdc8ebcaa7

6
itf/itfcore/urls.py Normal file
View File

@ -0,0 +1,6 @@
from django.conf.urls.defaults import *
urlpatterns = patterns('',
(r'^profile/(?P<name>.*)/', 'itfcore.views.profile'),
)