X-Git-Url: https://code.kerkeslager.com/?a=blobdiff_plain;f=src%2Fuser_profile%2Furls.py;h=d1dad9bbb1b51d594518543d6cfaf81ac0b0f93c;hb=refs%2Fheads%2Fmain;hp=bc2c6d85a822bc23a26fddc1f588a57d6b795cf1;hpb=637c8aa02f97e70453c659008783ecba1923b96c;p=climbing.kerkeslager.com 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', ), )