mirror of
https://github.com/lemeow125/Borrowing-TrackerBackend.git
synced 2024-11-17 06:19:26 +08:00
12 lines
247 B
Python
12 lines
247 B
Python
|
from django import forms
|
||
|
from django.contrib import admin
|
||
|
from django.contrib.auth.admin import UserAdmin
|
||
|
from .models import CustomUser
|
||
|
|
||
|
|
||
|
class CustomUserAdmin(UserAdmin):
|
||
|
model = CustomUser
|
||
|
|
||
|
|
||
|
admin.site.register(CustomUser, CustomUserAdmin)
|