add app user management allauth
This commit is contained in:
12
aseusers/urls.py
Normal file
12
aseusers/urls.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from django.urls import path
|
||||
from aseusers.views import *
|
||||
|
||||
urlpatterns = [
|
||||
path('', profile_view, name="profile"),
|
||||
path('edit/', profile_edit_view, name="profile-edit"),
|
||||
path('onboarding/', profile_edit_view, name="profile-onboarding"),
|
||||
path('settings/', profile_settings_view, name="profile-settings"),
|
||||
path('emailchange/', profile_emailchange, name="profile-emailchange"),
|
||||
path('emailverify/', profile_emailverify, name="profile-emailverify"),
|
||||
path('delete/', profile_delete_view, name="profile-delete"),
|
||||
]
|
||||
Reference in New Issue
Block a user