14 lines
418 B
Python
14 lines
418 B
Python
from django.contrib import admin
|
|
|
|
|
|
from . import models
|
|
# Register your models here.
|
|
|
|
|
|
class UserAdmin(admin.ModelAdmin):
|
|
list_display = ('email', 'full_name', 'role', 'company', 'email_verified', 'is_active', 'is_staff', 'created', 'last_visit')
|
|
list_filter = ('is_active', 'is_staff', 'email_verified')
|
|
search_fields = ('email', 'full_name', 'company')
|
|
|
|
admin.site.register(models.CustomUser, UserAdmin)
|