2018-05-23 21:28:27 +00:00
|
|
|
from django.urls import path
|
2015-10-05 16:35:30 +00:00
|
|
|
|
2019-03-26 20:22:54 +00:00
|
|
|
from .views import (
|
|
|
|
ProfileDetail,
|
|
|
|
ProfileUpdate,
|
|
|
|
)
|
2018-04-03 16:44:10 +00:00
|
|
|
|
|
|
|
app_name = 'profiles'
|
2015-10-05 16:35:30 +00:00
|
|
|
urlpatterns = [
|
2018-05-23 21:28:27 +00:00
|
|
|
path('', ProfileDetail.as_view(), name='detail'),
|
|
|
|
path('edit', ProfileUpdate.as_view(), name='update'),
|
2016-02-20 04:18:12 +00:00
|
|
|
]
|