Complete Refactor - Changed to Django

This commit is contained in:
2025-11-11 08:14:04 +00:00
commit 24b0422864
197 changed files with 62230 additions and 0 deletions

View File

19
apps/accounts/admin.py Normal file
View File

@@ -0,0 +1,19 @@
from django.contrib import admin
from django.contrib.auth.models import User
from django.contrib.auth.admin import UserAdmin as DjangoUserAdmin
from unfold.admin import ModelAdmin
class UnfoldUserAdmin(DjangoUserAdmin, ModelAdmin):
list_display = DjangoUserAdmin.list_display + ("last_login", "date_joined")
readonly_fields = ("last_login", "date_joined")
ordering = ("-date_joined",)
# Unregister the default User admin and register with Unfold
try:
admin.site.unregister(User)
except admin.sites.NotRegistered:
pass
admin.site.register(User, UnfoldUserAdmin)

0
apps/accounts/forms.py Normal file
View File

0
apps/accounts/models.py Normal file
View File

View File

View File

0
apps/accounts/urls.py Normal file
View File

0
apps/accounts/views.py Normal file
View File

0
apps/core/__init.py Normal file
View File

0
apps/core/models.py Normal file
View File

0
apps/core/utils.py Normal file
View File

44
apps/dashboard/admin.py Normal file
View File

@@ -0,0 +1,44 @@
# apps/dashboard/admin.py
from django.contrib import admin
from django.contrib.auth.admin import UserAdmin as BaseUserAdmin
from django.contrib.auth.admin import GroupAdmin as BaseGroupAdmin
from django.contrib.auth.models import User, Group
from unfold.forms import AdminPasswordChangeForm, UserChangeForm, UserCreationForm
from unfold.admin import ModelAdmin
# Unregister the default Group admin and register with Unfold
try:
admin.site.unregister(Group)
admin.site.unregister(User)
except admin.sites.NotRegistered:
pass
@admin.register(User)
class UserAdmin(BaseUserAdmin, ModelAdmin):
# Forms loaded from `unfold.forms`
form = UserChangeForm
add_form = UserCreationForm
change_password_form = AdminPasswordChangeForm
@admin.register(Group)
class GroupAdmin(BaseGroupAdmin, ModelAdmin):
pass
# # Custom dashboard view
# def custom_dashboard(request):
# context = {
# "user_count": get_user_model().objects.count(),
# "group_count": auth_models.Group.objects.count(),
# }
# return render(request, "unfold/dashboard.html", context)
# # Add the URL to admin
# admin.site.get_urls = (
# lambda self: [path("", custom_dashboard, name="index")] + self.get_urls()
# ).__get__(admin.site)