bornhack-website/src/profiles/urls.py

10 lines
231 B
Python
Raw Normal View History

from django.urls import path
2019-06-16 12:32:24 +00:00
from .views import ProfileDetail, ProfileUpdate
2018-04-03 16:44:10 +00:00
2019-06-16 12:32:24 +00:00
app_name = "profiles"
urlpatterns = [
2019-06-16 12:32:24 +00:00
path("", ProfileDetail.as_view(), name="detail"),
path("edit", ProfileUpdate.as_view(), name="update"),
2016-02-20 04:18:12 +00:00
]