Add a user profile
[climbing.kerkeslager.com] / src / user_profile / urls.py
diff --git a/src/user_profile/urls.py b/src/user_profile/urls.py
new file mode 100644 (file)
index 0000000..bc2c6d8
--- /dev/null
@@ -0,0 +1,11 @@
+from django.urls import path
+
+from . import views
+
+urlpatterns = (
+    path(
+        '<str:username>',
+        views.user_profile_detail,
+        name='user-profile-detail',
+    ),
+)