X-Git-Url: https://code.kerkeslager.com/?p=climbing.kerkeslager.com;a=blobdiff_plain;f=src%2Fuser_profile%2Furls.py;fp=src%2Fuser_profile%2Furls.py;h=bc2c6d85a822bc23a26fddc1f588a57d6b795cf1;hp=0000000000000000000000000000000000000000;hb=637c8aa02f97e70453c659008783ecba1923b96c;hpb=af1a3a283688e74a6e7868395cf2a507dcd2e0f4 diff --git a/src/user_profile/urls.py b/src/user_profile/urls.py new file mode 100644 index 0000000..bc2c6d8 --- /dev/null +++ b/src/user_profile/urls.py @@ -0,0 +1,11 @@ +from django.urls import path + +from . import views + +urlpatterns = ( + path( + '', + views.user_profile_detail, + name='user-profile-detail', + ), +)