7 lines
129 B
Python
7 lines
129 B
Python
|
from django.conf.urls.defaults import *
|
||
|
|
||
|
urlpatterns = patterns('',
|
||
|
(r'^profile/(?P<name>.*)/', 'itfcore.views.profile'),
|
||
|
)
|
||
|
|