Add: basic profile page

This commit is contained in:
Aroy-Art 2024-07-02 22:10:32 +02:00
parent 3f762419df
commit 03ccac13b6
Signed by: Aroy
GPG key ID: DB9689E9391DD156
3 changed files with 146 additions and 1 deletions

View file

@ -0,0 +1,7 @@
from django.urls import path
from .views import edit_profile
urlpatterns = [
# Other URL patterns
path('profile/', edit_profile, name='profile'),
]