16 lines
444 B
Python
16 lines
444 B
Python
from django.contrib import admin
|
|
|
|
from .models import Leerplein, SubgroepGroep
|
|
|
|
|
|
@admin.register(Leerplein)
|
|
class LeerpleinAdmin(admin.ModelAdmin):
|
|
list_display = ("naam", "omschrijving", "actief")
|
|
list_filter = ("actief",)
|
|
search_fields = ("naam",)
|
|
filter_horizontal = ("groepen", "subgroepen", "leerlingen")
|
|
|
|
|
|
@admin.register(SubgroepGroep)
|
|
class SubgroepGroepAdmin(admin.ModelAdmin):
|
|
list_display = ("subgroep", "groep")
|