9 lines
236 B
Python
9 lines
236 B
Python
from django.contrib import admin
|
|
|
|
from .models import UrenMomentopname
|
|
|
|
|
|
@admin.register(UrenMomentopname)
|
|
class UrenMomentopnameAdmin(admin.ModelAdmin):
|
|
list_display = ("schooljaar", "gemaakt_op")
|
|
list_filter = ("schooljaar",)
|