8 lines
261 B
Python
8 lines
261 B
Python
from django.contrib import admin
|
|
from .models import User
|
|
|
|
# Register your models here.
|
|
class UserAdmin(admin.ModelAdmin):
|
|
list_display = ('username', 'school_index', 'role', 'is_superuser', 'last_login', 'date_joined')
|
|
|
|
admin.site.register(User, UserAdmin) |