profiles: init

This commit is contained in:
2023-10-29 21:09:38 +01:00
parent 246213c5b8
commit 54cc1b1705
7 changed files with 51 additions and 2 deletions

View File

@ -3,5 +3,5 @@ from django.urls import path
from . import views
urlpatterns = [
path("<str:uuid>", views.ProfilePage.as_view(), name="profile_page"),
path("<int:id>", views.ProfilePage.as_view(), name="profile_page"),
]