bornhack-website/src/profiles/urls.py

11 lines
240 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
2018-04-03 16:44:10 +00:00
app_name = 'profiles'
urlpatterns = [
url(r'^$', ProfileDetail.as_view(), name='detail'),
2016-02-20 04:18:12 +00:00
url(r'^edit$', ProfileUpdate.as_view(), name='update'),
]