ernestophone.ens.fr/calendrier/admin.py
Lucie Galland d7fd5e5537 new respos
2021-10-23 11:16:07 +02:00

7 lines
181 B
Python

from django.contrib import admin
from .models import Event, Participants
# Add event by admin page return a 502 error
admin.site.register(Event)
admin.site.register(Participants)