add app user management allauth

This commit is contained in:
2025-02-01 19:16:33 +01:00
parent c13049a30f
commit e3ae8300f1
55 changed files with 1147 additions and 465 deletions

4
aseusers/admin.py Normal file
View File

@@ -0,0 +1,4 @@
from django.contrib import admin
from .models import Profile
admin.site.register(Profile)