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=d1dad9bbb1b51d594518543d6cfaf81ac0b0f93c;hp=bc2c6d85a822bc23a26fddc1f588a57d6b795cf1;hb=2db9b400dc1dbd5d0e1f3fa829d3d9029540b051;hpb=4ea2032901c06985e8616e16e7d0bba6bb3c9a43 diff --git a/src/user_profile/urls.py b/src/user_profile/urls.py index bc2c6d8..d1dad9b 100644 --- a/src/user_profile/urls.py +++ b/src/user_profile/urls.py @@ -2,10 +2,17 @@ from django.urls import path from . import views +app_name = 'user' + urlpatterns = ( + path( + '', + views.user_profile_detail, + name='self-profile-detail', + ), path( '', views.user_profile_detail, - name='user-profile-detail', + name='profile-detail', ), )