Display hep_id in list view
This commit is contained in:
parent
bcca3b3e04
commit
d7a9629139
|
|
@ -47,7 +47,7 @@ class CustomUserAdmin(UserAdmin):
|
|||
add_form = CustomUserCreationForm
|
||||
form = CustomUserChangeForm
|
||||
model = User
|
||||
list_display = ('username', 'first_name', 'last_name', 'school_classes_list', 'is_superuser')
|
||||
list_display = ('username', 'first_name', 'last_name', 'school_classes_list', 'is_superuser', 'hep_id')
|
||||
list_filter = ('school_classes', 'is_superuser')
|
||||
ordering = ['pk']
|
||||
search_fields = ('username', 'first_name', 'last_name')
|
||||
|
|
|
|||
Loading…
Reference in New Issue