bornhack-website/src/profiles/urls.py
Thomas Steen Rasmussen 0ff37bbca5 move code to src/ folder
2017-01-30 12:06:49 +01:00

9 lines
217 B
Python

from django.conf.urls import url
from .views import ProfileDetail, ProfileUpdate
urlpatterns = [
url(r'^$', ProfileDetail.as_view(), name='detail'),
url(r'^edit$', ProfileUpdate.as_view(), name='update'),
]