2015-10-05 16:35:30 +00:00
|
|
|
from django.conf.urls import url
|
|
|
|
|
2016-02-20 04:18:12 +00:00
|
|
|
from .views import ProfileDetail, ProfileUpdate
|
2015-10-05 16:35:30 +00:00
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
url(r'^$', ProfileDetail.as_view(), name='detail'),
|
2016-02-20 04:18:12 +00:00
|
|
|
url(r'^edit$', ProfileUpdate.as_view(), name='update'),
|
|
|
|
]
|