11 lines
243 B
Python
11 lines
243 B
Python
from django.conf.urls import patterns, url
|
|
from django.contrib.auth.views import password_change
|
|
|
|
from .views import UserProfileView
|
|
|
|
|
|
urlpatterns = patterns(
|
|
'',
|
|
url(r'^profile/', UserProfileView.as_view(), name="account_profile"),
|
|
)
|