phd-site/mainsite/admin.py

8 lines
168 B
Python
Raw Normal View History

2024-11-13 12:19:06 +01:00
from django.contrib import admin
2024-11-14 01:07:19 +01:00
from .models import Presence
2024-11-13 12:19:06 +01:00
2024-11-14 01:07:19 +01:00
@admin.register(Presence)
class PresenceAdmin(admin.ModelAdmin):
list_display = ["name", "created"]