bornhack-website/src/profiles/urls.py

9 lines
217 B
Python
Raw Normal View History

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