blob: e6c396d2d06098a09104212617e9a7503dc52f18 (
plain)
1
2
3
4
5
6
7
8
9
10
|
# -*- coding: utf-8 -*-
from django.conf.urls import patterns, url
urlpatterns = patterns('profile.views',
url(r'^(?P<username>[a-zA-Z_][a-zA-Z0-9_]*)/$',
'profile_view', name='profile_home'),
)
|