18 lines
351 B
Python
18 lines
351 B
Python
from django.contrib import admin
|
|
|
|
from vbv_lernwelt.events.models import Event
|
|
|
|
|
|
# Register your models here.
|
|
@admin.register(Event)
|
|
class EventAdmin(admin.ModelAdmin):
|
|
date_hierarchy = "end"
|
|
list_display = [
|
|
"title",
|
|
"course_session",
|
|
"start",
|
|
"end",
|
|
"unset"
|
|
]
|
|
list_filter = ["course_session"]
|