Add a user profile
[climbing.kerkeslager.com] / src / user_profile / urls.py
1 from django.urls import path
2
3 from . import views
4
5 urlpatterns = (
6     path(
7         '<str:username>',
8         views.user_profile_detail,
9         name='user-profile-detail',
10     ),
11 )