7 lines
141 B
Python
7 lines
141 B
Python
from django.conf.urls import url
|
|
|
|
from .views import ProfileDetail
|
|
|
|
urlpatterns = [
|
|
url(r'^$', ProfileDetail.as_view(), name='detail'),
|
|
] |