Nicer display of currently logged-in user
[climbing.kerkeslager.com] / src / user_profile / urls.py
1 from django.urls import path
2
3 from . import views
4
5 app_name = 'user'
6
7 urlpatterns = (
8     path(
9         '',
10         views.user_profile_detail,
11         name='self-profile-detail',
12     ),
13     path(
14         '<str:username>',
15         views.user_profile_detail,
16         name='profile-detail',
17     ),
18 )